-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
84 lines (81 loc) · 3.97 KB
/
header.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
<!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>esyarat</title>
<link rel="stylesheet" href="css/header.css">
</head>
<body>
<!-- header -->
<header>
<div class="wrapper">
<div class="mobile-nav">
<img id="mobile-cta" class="mobile-menu" src="img/hamburger.png" alt="Open Navigation" />
<a href=""><img id="mobile-logo" src="./img/logo.png" /></a>
</div>
<nav>
<ul class="menu-left">
<img id="mobile-exit" class="mobile-menu-exit" src="img/hamburger.png" alt="Close Navigation" />
<a href="" id="logoDesktop"><img src="./img/logo.png" /></a>
<li class="menu-item"><a class="active" href="home.html">Beranda</a></li>
<li class="menu-item"><a href="modulbahasa.html">Modul Bahasa</a></li>
<li class="menu-item"><a href="">Tentang Kami</a></li>
<li class="menu-item"><a href="">Terms & Policy</a></li>
</ul>
</nav>
<ul class="menu">
<div class="wrapper-notif">
<div class="notification_wrap">
<div class="notification_icon">
<img id="notif-bell-img" src="img/notif-bell.png" alt="Notification Icon" />
</div>
<div id="notif-content" class="dropdown">
<div class="notif-title-container">
<h1>Notification</h1>
</div>
<div class="notify_item">
<div class="notify_img">
<img id="notifImg" src="img/notif-img-1.png" alt="profile_pic" />
</div>
<div class="notify_info">
<p id="notifDesc">Pembayaranmu untuk modul “Jawa Barat” belum dilunasi, segera lunasi sekarang</p>
<span class="notify_time" id="notifTime">Mar 20, 2022 at 10.20 AM</span>
</div>
</div>
<div class="notify_item">
<div class="notify_img">
<img id="notifImg" src="img/Logo-Green-BG.png" alt="profile_pic" />
</div>
<div class="notify_info">
<p id="notifDesc">Contoh notifikasi panjang banget gila bro oemji</p>
<span class="notify_time" id="notifTime">Mar 20, 2022 at 10.20 AM</span>
</div>
</div>
</div>
</div>
</div>
<div class="wrapper-profile">
<div id="profile-icon" class="profile_wrap">
<div class="profile_icon">
<img id="profile-picture" src="img/profpic-profile.png" alt="Notification Icon" />
<img id="dropdown-icon" src="img/dropdown.png" alt="" />
</div>
<div id="profile-dropdown" class="dropdown">
<div class="prof-item" id="first-item">
Profil Saya
</div>
<div class="prof-item" id="logout">
Keluar Akun
</div>
</div>
</div>
</div>
</ul>
</div>
</header>
<!-- header -->
<script type="text/javascript" src="js/header.js"></script>
</body>
</html>