-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (63 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Property APP</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
</head>
<body>
<header id="navbar">
<h1 class="logo-app">Property APP</h1>
<nav>
<ul class="nav-list" id="nav-list">
<li><a href="index.html" class="nav-item active">Beranda</a></li>
<li><a href="tipe-rumah.html" class="nav-item">Tipe Rumah</a></li>
<li><a href="tentang-kami.html" class="nav-item">Tentang Kami</a></li>
<li><a href="kontak.html" class="nav-item">Kontak</a></li>
<li><a href="blog.html" class="nav-item">Blog</a></li>
</ul>
</nav>
<button class="icon-list" onclick="toggleNavbar()">
<i class="fa-solid fa-list"></i>
</button>
</header>
<main>
<section class="hero">
<div class="hero-text">
<h2 class="hero-title">Selamat Datang di Property APP</h2>
<p class="hero-detail">
Property APP adalah aplikasi yang menyediakan informasi tentang
properti yang dijual. Anda dapat melihat informasi tentang tipe
rumah yang dijual, harga rumah, dan lokasi rumah.
</p>
<div class="btn-group">
<button class="kontak-kami">
<i class="fa-solid fa-phone"></i>
<p>Kontak Kami</p>
</button>
<button class="info-detail">Info Detail</button>
</div>
</div>
<div>
<img
src="assets/images/hero-img.png"
alt="Gambar Utama"
width="600px"
class="hero-img"
/>
</div>
</section>
<section>
<h2 class="fasilitas-title">Fasilitas Kami</h2>
<div class="fasilitas-list" id="fasilitas-list"></div>
</section>
</main>
<footer>
<p>© 2024 Property APP</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>