-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (116 loc) · 3.58 KB
/
index.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!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" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link
rel="stylesheet"
href="styles.css" />
<link
rel="stylesheet"
href="https://unpkg.com/aos@next/dist/aos.css" />
<link
rel="shortcut icon"
href="Images/3.png"
type="image/png" />
<title>Web Informasi Desa Tarean</title>
</head>
<body>
<div class="nav">
<h2>Informasi Tarean 2024</h2>
<ul id="item">
<li><a href="#home">Home</a></li>
<li><a href="#about">Tentang</a></li>
<li><a href="#contact">Kontak</a></li>
</ul>
<div id="barDiv">
<span
id="bar"
onclick="toggleMenu()"></span>
</div>
</div>
<div
id="home"
class="back">
<div
class="overlay"
id="backtop"></div>
<div class="mid">
<p>Temukan Informasi Tentang Desa Kami</p>
<h2>Website Informasi Desa Tarean 2024</h2>
<button onclick="window.location.href='home.html'">Jelajahi Lebih Dalam</button>
</div>
</div>
<div class="details">
<div
class="one"
id="about"
data-aos="fade-up">
<h3>Tentang ?</h3>
<h4>Temukan informasi tentang letak, luas, dan sejarah Desa Tarean.</h4>
<p>Kamu juga bisa mendapat informasi tentang sekolah, puskesmas, dan fasilitas umum lainnya di desa kami.</p>
<button onclick="window.location.href='sejarah.html'">Kunjungi</button>
</div>
<div
class="two"
data-aos="fade-up">
<h3>Jam Kerja Desa</h3>
<h4>Sabtu-Minggu : Libur</h4>
<h4>Senin-Jumat</h4>
<p>8:00 - 05:00PM</p>
</div>
</div>
<div
class="contact"
id="contact"
data-aos="fade-up">
<div
class="form"
data-aos="fade-up">
<h2>Hubungi kami jika Anda memiliki pertanyaan seputar Desa Tarean.</h2>
<strong>Email:</strong> kkndesatarean@gmail.com
</h2>
</div>
<div
class="map"
data-aos="fade-up">
<h2>Tentang Lokasi Desa Tarean</h2>
<p>Desa Tarean terletak di Kecamatan Silinda, Kabupaten Serdang Bedagai, Provinsi Sumatera Utara, Indonesia.</p>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d31867.642552119625!2d98.76562934012492!3d3.2363077412758803!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30311266b63c3b0b%3A0x354b182d3facf7de!2sTarean%2C%20Kec.%20Silinda%2C%20Kabupaten%20Serdang%20Bedagai%2C%20Sumatera%20Utara!5e0!3m2!1sid!2sid!4v1721711184703!5m2!1sid!2sid"
width="600"
height="450"
style="border: 0"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
width="1290"
height="250"
style="border: 0"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
offset: 200,
duration: 1000,
});
function toggleMenu() {
const nav = document.getElementById('item');
nav.classList.toggle('show');
}
</script>
<script src="script.js"></script>
</body>
</html>