-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (103 loc) · 3.34 KB
/
index.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>iPhone 16</title>
<link rel="icon" type="image/png" sizes="32x32" href="./img/icon.png">
<link rel="stylesheet" href="./css/styles.css">
<script src="./js/scripts.js" defer></script>
</head>
<body>
<header>
<nav>
<ul id="navbar">
<li id="logo">
<a href="#">
<img src="./img/nav/logo_apple.svg" alt="Apple Store">
</a>
</li>
<li>
<a href="#">Loja</a>
</li>
<li>
<a href="#">Mac</a>
</li>
<li>
<a href="#">iPad</a>
</li>
<li>
<a href="#">iPhone</a>
</li>
<li>
<a href="#">Watch</a>
</li>
<li>
<a href="#">AirPods</a>
</li>
<li>
<a href="#">TV e Casa</a>
</li>
<li>
<a href="#">Entretenimento</a>
</li>
<li>
<a href="#">Acessórios</a>
</li>
<li>
<a href="#">Suporte</a>
</li>
<li>
<a href="#">
<img src="./img/nav/search.svg" alt="lupa">
</a>
</li>
<li>
<a href="#">
<img src="./img/nav/bag.svg" alt="search">
</a>
</li>
</ul>
</nav>
</header>
<main id="main-content">
<section class="hero-section">
<img src="./img/hero/hero_text.png" alt="texto iPhone 16" class="text-hero">
<img src="./img/hero/hero_iphone_blue.png" alt="iPhone 16 Blue" id="iphone-hero">
<div class="action">
<button>Comprar</button>
<p>A partir de R$ 649,92/mês ou R$ 7.799<span>◊</span></p>
</div>
</section>
<section class="section-change">
<h2>
Explore os detalhes.
</h2>
<img id="product-image" src="./img/iphone_colors.png" alt="iPhone 13" />
<p id="description">iPhone 16 de 6,1 pol. em cinco cores</p>
<div id="image-picker">
<ul>
<li id="colors">
<span class="color selected"></span>
</li>
<li id="blue">
<span class="color"></span>
</li>
<li id="green">
<span class="color"></span>
</li>
<li id="pink">
<span class="color"></span>
</li>
<li id="white">
<span class="color"></span>
</li>
<li id="gray">
<span class="color"></span>
</li>
</ul>
</div>
</section>
</main>
</body>
</html>