-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
134 lines (129 loc) · 3.38 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
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@mdi/light-font@0.2.63/css/materialdesignicons-light.min.css">
<script src="./js/js.js" defer></script>
<title>iPhone 14 Pro</title>
</head>
<body>
<header id="header">
<nav class="navBar">
<ul class="list">
<li class="items">
<a href="#">
<img src="./assets/apple.svg" alt="iPhone Logo" width="25px">
</a>
</li>
<li class="items">
<a href="#">
Loja
</a>
</li>
<li class="items">
<a href="#">
Mac
</a>
</li>
<li class="items">
<a href="#">
iPad
</a>
</li>
<li class="items">
<a href="#">
iPhone
</a>
</li>
<li class="items">
<a href="#">
Watch
</a>
</li>
<li class="items">
<a href="#">
AirPods
</a>
</li>
<li class="items">
<a href="#">
TV e Casa
</a>
</li>
<li class="items">
<a href="#">
Entretenimento
</a>
</li>
<li class="items">
<a href="#">
Acessórios
</a>
</li>
<li class="items">
<a href="#">
Suporte
</a>
</li>
<li class="items">
<a href="#">
<span class="mdil mdil-magnify"></span>
</a>
</li>
<li class="items">
<a href="#">
<span class="mdil mdil-briefcase"></span>
</a>
</li>
</ul>
</nav>
<div id="bottomNavBar">
<h3>iPhone 14 Pro</h3>
<div class="bottomNavBarLinks">
<a href="#" class="active">Visão Geral</a>
<a href="#" class="link">Mude do Android para o iPhone</a>
<a href="#" class="link">Especificações</a>
<a href="#" class="btn">Compar</a>
</div>
</div>
</header>
<div id="ribbon">
<span>Pague seu novo iPhone em até 12 parcelas ou economize 10% nos pagamentos à vista. <a href="#">Saiba mais <span
class="mdil mdil-chevron-right"></span></a></span>
</div>
<main>
<div class="mainContentHeader">
<h1 class="title">Pro. E Além.</h1>
<div class="bulletColor">
<span class="colorName">Roxo-profundo</span>
<ul class="bullets">
<li id="purple">
<span class="color selected"></span>
</li>
<li id="gold">
<span class="color"></span>
</li>
<li id="silver">
<span class="color"></span>
</li>
<li id="black">
<span class="color"></span>
</li>
</ul>
</div>
</div>
<div class="mainContentImage">
<img id="product-image" src="./assets/iPhone_purple.jpg" alt="iPhone image">
</div>
<div class="mainContentInfo">
<h3>iPhone 14 Pro e iPhone 14 Pro Max</h3>
<span>A partir de R$ 791,58/mês ou R$ 9.499*</span>
<a href="#" class="btn">Comprar</a>
</div>
</main>
</body>
</html>