-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
183 lines (158 loc) · 5.46 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!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">
<!-------------------Google fonts--------------------->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500;600;700;800&family=Josefin+Sans:ital,wght@0,100;0,200;0,300;1,100;1,200&display=swap" rel="stylesheet">
<!------------------Icon custom--------------------->
<link rel="shortcut icon" href="img/logo.svg" type="image/x-icon">
<!------------------Custom CSS--------------------->
<link rel="stylesheet" href="css/style.css">
<!------------------Title--------------------->
<title>Nike. Just Do It.</title>
</head>
<body>
<header class="header-top">
<nav>
<img src="img/jordan.svg" alt="Jordan-Logo">
</nav>
<nav>
<ul>
<li> <input class="input-buscar" type="text" placeholder="Search"></li>
<li><a href="form.html" target="_blank">Sign In</a></li>
</ul>
</nav>
</header>
<header class="header">
<a class="titulo" href="index.html"><img src="img/logo.svg" alt="Nike-Logo"></a>
<nav>
<ul class="menu">
<li><a href="#">New & Featured</a></li>
<li><a href="#">Men</a></li>
<li><a href="#">Women</a></li>
<li><a href="#">Kids</a></li>
<li><a href="#">Sale</a></li>
</ul>
</nav>
</header>
<main class="nike-bg">
<div class="nike-intro">
<div class="nike-title">
<h1 id="title">
Empower your potential with nike.
</h1>
<p>
Discover a new form of empowerment with Nike. Combining unrivaled performance,
innovative design and commitment to sustainability, we believe it's possible
to achieve more and inspire everyone.
</p>
</div>
<div class="nike-sub">
<img src="img/nike.png" alt="Nike">
</div>
</div>
</main>
<main class="main3-bg">
<div class="main3">
<div class="img3">
<img src="img/jaquetared (1).jpg" alt="">
</div>
<div class="img3">
<img src="img/jaquetawhite.jpg" alt="">
</div>
<div class="img3-4">
<img src="img/nikeblue.jpg" alt="">
</div>
</div>
</main>
<main class="jordan">
<section>
<h1> Jordan Collection</h1>
</section>
</main>
<main class="main4">
<div>
<ul class="menu-img">
<li>
<img src="img/592.png" alt="">
<h3>Jordan Flight</h3>
<p>$ 109,99</p>
</li>
<li>
<img src="img/rosa592.png" alt="">
<h3>Jordan X Thow 18</h3>
<p>$ 99,99</p>
</li>
<li>
<img src="img/592casacopreto.png" alt="">
<h3 >Jordan Brooklyn Fleece</h3>
<p>$ 85,99</p>
</li>
<li>
<img src="img/592casacoblack.png" alt="">
<h3>Jordan Brooklyn</h3>
<p>$ 129,99</p>
</li>
</ul>
<div class="tenis-nike">
<h1>Every step with you</h1>
</div>
<ul class="menu-img">
<li>
<img src="img/air-max-97-mens-shoes-LJmK45.png" alt="">
<h3>Nike AirMax 97</h3>
<p>$ 159,99</p>
<button> <a href="#">Shop now</a></button>
</li>
<li>
<img src="img/invincible-3-mens-road-running-shoes-CLdFjq.png" alt="">
<h3>Nike Invencible 97</h3>
<p>$ 199,99</p>
<button> <a href="#">Shop now</a></button>
</li>
<li>
<img src="img/metcon-8-mens-training-shoes-ppltpW (1).png" alt="">
<h3>Nike Metcon</h3>
<p>$ 189,99</p>
<button> <a href="#">Shop now</a></button>
</li>
<li>
<img src="img/pegasus-trail-4-gore-tex-mens-waterproof-trail-running-shoes-qdcSR6.png" alt="">
<h3>Nike Pegasus Trail</h3>
<p>$ 179,99</p>
<button> <a href="#">Shop now</a></button>
</li>
</ul>
</div>
</main>
<footer class="footer-bg">
<div class="footer-sub">
<div class="footer-menu">
<ul>
<li>
<p>© 2023 Nike, Inc. All rights reserved</p>
</li>
<li>
<p>Coded by <a href="https://www.linkedin.com/in/lucaass1997/" target="_blank">Lucas Santos</a></p>
</li>
</ul>
</div>
<div class="footer-menu2">
<ul>
<li>
<p> Nike Privacy Policy</p>
</li>
<li>
<p>Terms of use</p>
</li>
</ul>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>