-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuku_saku.html
More file actions
80 lines (52 loc) · 2.39 KB
/
Copy pathBuku_saku.html
File metadata and controls
80 lines (52 loc) · 2.39 KB
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>Asabri</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body>
<section class="header">
<nav>
<a href="asabri.html"><img src="Picture1.png" alt="Logo"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="asabri.html">Asabri</a></li>
<li class="dropdown">
<a href="slide-1.html" class="dropbtn">Materi Sosialisasi</a>
<div class="dropdown-content">
<a href="slide-2.html">Lengkap</a>
<a href="slide-1.html">Dengan AI</a>
</div>
</li>
<li><a href="Buku_saku.html">Buku Saku Informasi Asabri</a></li>
<li><a href="Sosialisasi_program.html">Sosialisasi Program ASABRI</a></li>
<li><a href="chatbot.html">Quesioner Asabri</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
</section>
<div class="tex-box" >
<h1>Buku Saku Informasi</h1>
<p>On this page, we're going to explain about Complete Socialization</p>
<a href="a.html" class="hero-btn">Buku saku Asabri</a>
</div>
<!---Purpose For this web-->
<script>
var navLinks = document.getElementById('navLinks');
function hideMenu(){
navLinks.style.right = "-200px";
}
function showMenu(){
navLinks.style.right = "0";
}
</script>
</body>
</html>