-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (116 loc) · 3.31 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>iPhone 13 Pro</title>
<link rel="stylesheet" href="css/style.css" />
<script src="js/script.js" defer></script>
</head>
<body>
<header>
<nav>
<ul id="navbar">
<li id="logo">
<a href="#">
<img src="img/logo_apple.svg" alt="logo_apple" srcset="" />
</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="#"> Só na Apple </a>
</li>
<li>
<a href="#"> Acessórios </a>
</li>
<li>
<a href="#"> Suporte </a>
</li>
</ul>
</nav>
<div id="bottom-header">
<div id="bottom-header-inner">
<h3>iPhone 13 Pro</h3>
<div id="bottom-header-links">
<a href="#">Visão geral</a>
<a href="#">Mudar para o iPhone</a>
<a href="#">Especificações</a>
<a href="#" class="btn">Compar</a>
</div>
</div>
</div>
</header>
<div id="ribbon">
<p>
Pague seu nome iPhone em até 12 parcelas ou economize 10% nos pagamentos
à vista <a href="#">Saiba mais</a>
</p>
</div>
<main id="main-content">
<h1 id="title">iPhone 13 Pro</h1>
<p id="subtitle">É todo Pro.</p>
<p id="description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Provident
labore nesciunt incidunt ad itaque, id, nobis voluptatibus atque quas
aliquam dolore optio asperiores cum blanditiis sapiente eligendi
perspiciatis quam consectetur.
</p>
<p id="price">A partir de R$ 9,499</p>
<a href="#" class="btn">Compar</a>
<img
id="product-image"
src="img/iphone_green.jpg"
alt="iPhone 13 Pro"
srcset=""
/>
<div id="image-picker">
<ul>
<li id="green">
<span class="color green selected"></span>
<span class="description">Verde-alpino</span>
</li>
<li id="silver">
<span class="color silver"></span>
<span class="description">Prateado</span>
</li>
<li id="golden">
<span class="color golden"></span>
<span class="description">Dourado</span>
</li>
<li id="grafite">
<span class="color grafite"></span>
<span class="description">Grafite</span>
</li>
<li id="blue">
<span class="color blue"></span>
<span class="description">Azul-Sierra</span>
</li>
</ul>
</div>
</main>
<footer>
<p id="dev">Dev: Edson Barros</p>
<p>© Todos os direitos reservados</p>
</footer>
<script>
</script>
</body>
</html>