-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
142 lines (135 loc) · 4.76 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
<!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" />
<title>Nike shoes</title>
<link rel="icon" href="./assests/images/favicon.webp" type="icon" />
<!-- custom css -->
<link rel="stylesheet" href="./styles/style.css" />
</head>
<body>
<!-- header start -->
<header class="header">
<nav class="nav-bar">
<div class="logo-container">
<img src="./assests/images/logo.png" alt="logo" class="logo" />
</div>
<ul class="nav-list-container">
<li class="nav-list-item">
<a href="#" class="nav-link">Home</a>
</li>
<li class="nav-list-item">
<a href="#" class="nav-link">Products</a>
</li>
<li class="nav-list-item">
<a href="#" class="nav-link">Contact</a>
</li>
</ul>
</nav>
<div class="hero-section">
<div class="hero-left-container">
<h1 class="hero-title-container">This website is awesome</h1>
<p class="hero-description">
Set goals, Exercise, Love yourself. Focus on fitness. Rest and
relax. Eat right. Smile. Potray positive. Enjoy life. Care for
others. Tell yourself you can do this...
</p>
<button class="btn-blue">Sign up</button>
</div>
<div class="hero-right-container">
<img src="./assests/images/logo2.jpg" alt="Logo" class="nike-shoe" />
</div>
</div>
</header>
<!-- header end -->
<!--product section start -->
<section class="product-section">
<h2 class="product-title">Nike shoes</h2>
<di v class="all-products">
<div class="product-image-container">
<img
src="./assests/images/product.jpg"
alt="nike-shoe"
class="product"
/>
<h3 class="small-title">Product1</h3>
<p class="product-description">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempore,
cum?
</p>
</div>
<div class="product-image-container">
<img
src="./assests/images/product 1.jpg"
alt="nike-shoe"
class="product"
/>
<h3 class="small-title">Product2</h3>
<p class="product-description">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempore,
cum?
</p>
</div>
<div class="product-image-container">
<img
src="./assests/images/product 2.jpg"
alt="nike-shoe"
class="product"
/>
<h3 class="small-title">Product3</h3>
<p class="product-description">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempore,
cum?
</p>
</div>
<div class="product-image-container">
<img
src="./assests/images/product 3.jpg"
alt="nike-shoe"
class="product"
/>
<h3 class="small-title">Product4</h3>
<p class="product-description">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempore,
cum?
</p>
</div>
</di>
</section>
<!--product section end -->
<!-- quote section start -->
<section class="quote">
<blockquote class="quote-description">
There is no harm in dreaming of becoming the world’s best player. It is
all about trying to be the best. I will keep working hard to achieve it
but it is within my capabilities.I don’t want to be compared to anyone –
I’d like to impose my own style of play and do the best for myself and
for the club here.
</blockquote>
<cite class="cite"> -Cristiano Ronaldo </cite>
</section>
<!-- quote section end -->
<!-- login section start -->
<section class="login">
<div class="card">
<div class="left-container">
<h2 class="login-title">Call to action it's time!</h2>
<p class="login-para">
Sign up for cut product by clicking that button right over there!
</p>
</div>
<div class="right-container">
<button class="login-button">Sign up</button>
</div>
</div>
</section>
<!-- login section end -->
<!-- footer start -->
<footer class="copyright">
<p class="footer-description">Copyright © The Odin Project 2021</p>
</footer>
<!-- footer end -->
</body>
</html>