-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacbookpage.html
56 lines (52 loc) · 2.14 KB
/
macbookpage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mac Book Pro</title>
<link rel="stylesheet" href="css/productpages.css">
</head>
<body>
<section class="banner">
<header>
<a href="#" class="logo">Mac Book Pro</a>
<div class="toggle" onclick="toggle()"></div>
</header>
<div class="content">
<div class="contentbox">
<h2><span style="font-size: 2rem;">MacBook Pro. </span><br>POWER. MOVES.</h2>
<p>
MacBook Pro elevates the notebook to a whole new level of performance and portability. Wherever your
ideas take you, you’ll get there faster than ever with high‑performance processors and memory,
advanced graphics, blazing‑fast storage and more — all in a compact 1.4-kilogram package.
</p>
<a href="apple_store.html">Buy Now</a>
</div>
<div class="imgbox">
<img src="images/watchpage/macbook.png" alt="">
</div>
</div>
<ul class="sci">
<li><a href="#"><img src="images/watchpage/facebook.png" alt=""></a></li>
<li><a href="#"><img src="images/watchpage/twitter.png" alt=""></a></li>
<li><a href="#"><img src="images/watchpage/instagram.png" alt=""></a></li>
</ul>
<ul class="menu">
<li><a href="homepage.html">Home</a></li>
<li><a href="iphonepage.html">IPhones</a></li>
<li><a href="ipadpage.html">IPad</a></li>
<li><a href="watchpage.html">IWatch</a></li>
<li><a href="apple_store.html">Apple Store</a></li>
<li><a href="comingsoon.html">Coming soon</a></li>
</ul>
</section>
<script>
function toggle() {
const toggle = document.querySelector('.toggle');
const banner = document.querySelector('.banner');
banner.classList.toggle('active');
toggle.classList.toggle('active');
}
</script>
</body>
</html>