-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactus.html
More file actions
76 lines (69 loc) · 2.18 KB
/
contactus.html
File metadata and controls
76 lines (69 loc) · 2.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Landing Page</title>
<!-- My Own CSS -->
<link rel="stylesheet" href="style.css" />
<!-- Fonts -->
<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=Quicksand:wght@500;700&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome 5.15.4 -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<header class="navbar-container">
<div class="logo">
<img src="img/logo.png" alt="Logo" />
</div>
<nav class="nav-list">
<ul>
<li><a href="index.html">Beranda</a></li>
<li><a href="cocacola.html">Coca Cola</a></li>
<li><a href="mieayam.html">Mie Ayam</a></li>
<li><a href="ayamgoreng.html">Ayam Goreng</a></li>
<li><a href="contactus.html">Kontak Kami</a></li>
</ul>
</nav>
</header>
<main>
<div class="content">
<div class="content-description">
<h1 class="title">Hubungi Kami</h1>
<a href="https://wa.me/628887739011"
><button>Beli Sekarang!</button></a
>
</div>
<div class="content-image">
<img src="img/ayam.png" alt="Produk" />
</div>
</div>
<aside>
<div class="social-media">
<ul>
<li>
<a href="https://www.youtube.com/channel/UCvxXwrTyK5eZnSDgKYd_eUQ"
><i class="fab fa-youtube"></i
></a>
</li>
<li>
<a href="https://www.instagram.com/nawwaann/"
><i class="fab fa-instagram"></i
></a>
</li>
</ul>
</div>
</aside>
</main>
</body>
</html>