-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkontak.html
56 lines (56 loc) · 1.88 KB
/
kontak.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
<!DOCTYPE html>
<html>
<head>
<title>Web Warung Tegal</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="wrapper">
<header>
<h1>Warung Tegal</h1>
<nav>
<ul>
<li><a href="index.html">Beranda</a></li>
<li><a href="daftar-masakan.html">Daftar Masakan</a></li>
<li><a href="tentang.html">Tentang</a></li>
<li><a href="kontak.html" class="current">Kontak</a></li>
</ul>
</nav>
</header>
<section class="courses">
<article id="kontak" style="padding-left: 25px;">
<h2 style="color: #de6581; margin-top: 30px; margin-left: 15px;">Kontak</h2>
<table>
<tr class="wa">
<td><i class="fa fa-whatsapp fa-2x" aria-hidden="true"></i></td>
<td style="padding-left: 15px;"><p style="font-size: 16px;">Whatsapp</p></td>
<td style="padding-left: 10px;"><p style="font-size: 16px;">:</p></td>
<td style="padding-left: 10px;">
<a href="https://api.whatsapp.com/send?phone=+628123456789">
<p style="font-size: 16px;">+628123456789</p>
</a>
</td>
</tr>
</table>
</article>
</section>
<aside>
<section class="popular-recipes">
<h2>Masakan Populer</h2>
<a href="#sayur-sop">Sayur Sop</a>
<a href="#sayur-asem">Sayur Asem</a>
<a href="#sayur-lodeh">Sayur Lodeh</a>
<a href="#sayur-bayam">Sayur Bayam</a>
</section>
<section class="contact-details">
<h2>Kontak</h2>
<p>Warung Tegal<br />
di seluruh indonesia
</section>
</aside>
<footer>
© 2021 Warung Tegal
</footer>
</div><!-- .wrapper -->
</body>
</html>