-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (51 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<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=Outfit:wght@200;300;500;700&display=swap" rel="stylesheet">
<title>Nike Adapt BB 2.0</title>
</head>
<body>
<header>
<!-- Napsat pod jeden Nav, rozdelit pomoci divu -->
<nav class="nav-left-section">
<img src="/images/nike_logo.svg" alt="Nike Logo" class="nike-logo">
<ul class="nav-links">
<li><a href="#">Men</a></li>
<li><a href="#">Women</a></li>
<li><a href="#">Kids</a></li>
<li><a href="#">Accessories</a></li>
</ul>
</nav>
<nav class="nav-right-section">
<a href=#"><i class="fas fa-shopping-cart"></i></a>
</nav>
</header>
<!-- main -->
<div class="contents">
<div class="text-info">
<h1>Nike Adapt BB 2.0</h1>
<div class="divider"></div>
<p>Riding the momentum of last year's hit auto-lacing basketball shoe, the Nike Adapt BB 2.0 delivers
the
same consistent, customized fit, now with more of the game-changing technology revealed.<br><br>
Ultra-responsive cushioning is curved to follow the natural motion of your foot, providing
continuous
energy return on the court.</p>
<button>Shop Now!</button>
</div>
<div class="nike-shoe-content">
<div class="div2">
<div class="circle"></div>
<img src="/images/nike_adapt_bb_2.png" alt="">
</div>
</div>
</div>
</body>
</html>