-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (60 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Urban - Home</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<div class="navbar">
<img src="Urban-Fashion-Img/logo.png" class="logo" />
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="explore.html">Explore</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="catergory.html">Category</a></li>
</ul>
</nav>
<img
src="./Urban-Fashion-Img/cart.png"
width="50px"
height="50px"
class="cart"
/>
</div>
<!-- banner text -->
<div class="banner">
<div class="banner-text">
<div class="btn-cont">
<div class="for-border">
<a href="collections.html" class="btn">2020 collections</a>
</div>
</div>
<h1 class="banner-head">
You should always <br />
feel pretty
</h1>
<p class="para">
Feel the warm in this winter with the new collections
</p>
<div>
<span
><img class="icons" src="./Urban-Fashion-Img/back-arrow.png"
/></span>
<span
><img
class="icons icon2"
src="./Urban-Fashion-Img/next-arrow.png"
/></span>
</div>
</div>
<div class="banner-image">
<img src="Urban-Fashion-Img/img.png" class="image" />
</div>
</div>
</div>
</body>
</html>