-
Notifications
You must be signed in to change notification settings - Fork 5
/
navbar-div.html
93 lines (91 loc) · 2.44 KB
/
navbar-div.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
<!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>Document</title>
<link rel="stylesheet" href="styles/navbar-div.css">
<link rel="shortcut icon" href="https://img.ecommercedb.com/gearbest.com-75ioegxvb6cx.png" type="image/x-icon">
<script
src="https://kit.fontawesome.com/24c494a6b6.js"
crossorigin="anonymous"
></script>
</head>
<style>
#navbar-div{
width:100%;
box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
#section-div{
width:78%;
padding: 10px;
white-space: nowrap;
margin: auto;
display: flex;
justify-content: space-around;
}
#section-div>div:nth-child(1){
position: relative;
display: inline-block;
color: #000;
font-weight: 700;
font-family: OpenSans,Arial,Helvetica,sans-serif;
}
#section-div>div:nth-child(2){
position: relative;
display: inline-block;
margin-left: -10px;
font-weight: 700;
font-family: OpenSans,Arial,Helvetica,sans-serif;
height:20px;
border-right: 1px solid lightgray;
}
#section-div>div:nth-child(3){
position: relative;
display: inline-block;
color: #000;
font-weight: 700;
font-family: OpenSans,Arial,Helvetica,sans-serif;
}
#section-div>div:nth-child(4){
position: relative;
display: inline-block;
color: #000;
font-weight: 700;
font-family: OpenSans,Arial,Helvetica,sans-serif;
}
#section-div>div:nth-child(5){
position: relative;
display: inline-block;
color: #000;
font-weight: 700;
font-family: OpenSans,Arial,Helvetica,sans-serif;
}
#section-div>div:nth-child(6){
position: relative;
display: inline-block;
color: #000;
font-weight: 700;
font-family: OpenSans,Arial,Helvetica,sans-serif;
}
.hovering:hover{
border-bottom: 5px solid #ffda00; ;
}
</style>
<body>
<div id="navbar-div">
<div id="section-div">
<div><i class="fa-solid fa-bars"></i> CATEGORY</div>
<div></div>
<div class="hovering">COUPON</div>
<div class="hovering">SUPER DEALS</div>
<div class="hovering">APP ONLY</div>
<div class="hovering">NEW ARRIVALS</div>
</div>
<body>
<div id="navbar-div">
</div>
</body>
</html>
<script type="module" src="Components/navbar-div.js"></script>