-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsec-navbar.html
43 lines (38 loc) · 1.66 KB
/
sec-navbar.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="fonts.css">
<link rel="stylesheet" href="CSS/style.css">
</head>
<body>
<!-- sub Navbar -->
<nav class="w-full h-10 bg-[#003c7c] relative">
<div class="h-full ml-36 mr-36 flex">
<!-- left -->
<div class="h-full flex gap-8 place-items-center">
<div class=" text-center text-white text-xl font-semibold font-['Nunito Sans'] uppercase">
new arrivals</div>
<div class=" text-center text-white text-xl font-semibold font-['Nunito Sans'] uppercase">
LEADERBOARD</div>
<div class="text-center text-white text-xl font-semibold font-['Nunito Sans'] uppercase">
QUIZES</div>
<div class="text-center text-white text-xl font-semibold font-['Nunito Sans'] uppercase">
BESTSELLERS</div>
</div>
<!-- right -->
<div class="ml-auto flex place-items-center gap-8">
<div class="text-center text-white text-xl font-semibold font-['Nunito Sans'] uppercase">
My Books</div>
<div class="flex place-items-center gap-2">
<div class="h-5 w-7 bg-wallet_icon_white bg-full bg-no-repeat"></div>
<div class="text-center text-white text-xl font-semibold font-['Nunito Sans'] uppercase">
WALLET</div>
</div>
</div>
</div>
</nav>
</body>
</html>