-
Notifications
You must be signed in to change notification settings - Fork 0
/
class.html
80 lines (73 loc) · 2.08 KB
/
class.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fashionstore</title>
<link rel="stylesheet" href="node_modules/bootstrap-icons/font/bootstrap-icons.css">
<style type="text/css">
header{
display:flex; /*makes inline which are one below other*/
justify-content: space-around ; /* x axis par cahenges krne k lie*/
font-size: 20px;
font-style: Arial;
padding:20px;
margin-left: 105px;
}
nav span{
padding: 10px;
}
.cart-name{
background-color: red;
color:white;
display:inline-block;
padding: 0px 4px 0px 4px;
border-radius: 50%;
text-align: center;
}
.brand-title{
font-weight: bold;
font-size:25px;
}
article{
text-align: center;
background-color: black;
color:white;
padding:15px;
}
.bi-lightning-charge-fill{
color:gold;
}
</style>
</head>
<body>
<header>
<div>
<div class="brand-title">Shopper.</div>
</div>
<div>
<nav>
<span>Home</span>
<span>Catalog</span>
<span>Shop</span>
<span>Pages</span>
<span>Blog</span>
<span>Docs</span>
</nav>
</div>
<div>
<nav>
<span class="bi bi-search"></span>
<span class="bi bi-person"></span>
<span class="bi bi-heart"></span>
<span class="bi bi-cart2"><span class="cart-name">2</span></span>
</nav>
</div>
</header>
<article>
<span class="bi bi-lightning-charge-fill"></span>
<span>HAPPY HOLIDAY DEALS ON EVERYTHING</span>
<span class="bi bi-lightning-charge-fill"></span>
</article>
</body>
</html>