-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (90 loc) · 3.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nike</title>
<!-- font-family link poppin -->
<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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<!-- inter font link -->
<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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
rel="stylesheet"
/>
<!-- font awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- my style sheet -->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="media.css" />
</head>
<body>
<!-- nav bar -->
<header>
<nav class="navbar">
<div class="logo">
<img src="./images/logo.png" alt="nike-logo" />
</div>
<input type="checkbox" id="check" class="click" />
<ul class="nav-links">
<div class="nav-logo">
<img src="./images/logo.png" alt="nike-logo" />
</div>
<li><a href="#">Menu</a></li>
<li><a href="#">Location</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<label for="check" class="cross-icon">
<i class="fa-solid fa-xmark"></i>
</label>
<div class="nav-login-btn">
<button class="nav-login">Login</button>
</div>
</ul>
<div class="login-btn">
<button class="login">Login</button>
</div>
<label for="check" class="hambur-icon">
<i class="fa-solid fa-bars"></i>
</label>
</nav>
</header>
<!-- ============================================================ -->
<section>
<div class="container">
<div class="column-1">
<h1>YOUR FEET DESERVE THE BEST</h1>
<p class="shoe-info">
YOUR FEET DESERVE THE BEST AND WE’RE HERE TO HELP YOU WITH OUR
SHOES.YOUR FEET DESERVE THE BEST AND WE’RE HERE TO HELP YOU WITH OUR
SHOES.
</p>
<div class="btns">
<button class="shop-now">Shop Now</button>
<button class="category">Category</button>
</div>
<p class="available">Also Available On</p>
<div class="site-icon">
<img src="./images/f-bag.png" alt="f-bag" />
<img src="./images/amazon.png" alt="amazon" />
</div>
</div>
<div class="column-2">
<img src="./images/shoe.png" alt="Shoe" />
</div>
</div>
</section>
</body>
</html>