-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkontak.php
44 lines (39 loc) · 1.5 KB
/
kontak.php
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
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kontak - Klinik Gaspol</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<div class="container">
<h1>Klinik Gaspol</h1>
<nav>
<ul>
<li><a href="beranda.php">Beranda</a></li>
<li><a href="jadwal.php">Jadwal Dokter</a></li>
<li><a href="pasien.php">Data Pasien</a></li>
<li><a href="rmedis.php">Rekam Medis</a></li>
<li><a href="kontak.php">Kontak</a></li>
<li><a style="text-decoration:none;color: #0ae7ff;font-weight: bold;" href="logout.php" class="logout">Logout</a></li>
</ul>
</nav>
</div>
</header>
<main class="container">
<h2>Kontak</h2>
<p>Alamat: Jl. Kesehatan No. 123, Kota Sehat</p>
<p>Telepon: (021) 123-4567</p>
<p>Email: [klinik.simpel@example.com](mailto:klinik.simpel@example.com)</p>
<p>Facebook: <a href="https://www.facebook.com/klikniksimpel">Klinik Gaspol</a></p>
<p>Twitter: <a href="https://www.twitter.com/klikniksimpel">Klinik Gaspol</a></p>
</main>
<footer>
<p>© 2023 Klinik Gaspol. Semua hak dilindungi.</p>
<p>Alamat: Jl. Kesehatan No. 123, Kota Sehat</p>
<p>Telepon: (021) 123-4567</p>
</footer>
</body>
</html>