-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (86 loc) · 2.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!-- font -->
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,400;0,600;0,700;1,400;1,800&display=swap");
</style>
<!-- feather icon -->
<script src="https://unpkg.com/feather-icons"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- NAVBAR STAR -->
<nav class="navbar">
<a href="#"> <img src="js/img/GEO.png" class="navbar-logo" /></a>
<div class="navbar-nav">
<a href="#home">HOME</a>
<a href="#about">TENTANG KAMI</a>
<a href="#contact">KONTAK</a>
</div>
<div class="navbar-extra">
<a href="#" id="menu"><i data-feather="menu"></i></a>
</div>
</nav>
<!-- NAVBAR END -->
<!-- HERO SECTION START -->
<section class="HERO" id="home">
<main class="content">
<h1>
Kebersamaan keluarga adalah mahakarya cinta, mengukir kisah indah di
setiap lembar hidup.
</h1>
</main>
</section>
<!-- HERO SECTION END -->
<!-- ABOUT SECTION START -->
<section id="about" class="about">
<h2>TENTANG KAMI</h2>
<div class="row">
<div class="about-img">
<img src="js/img/logo.png" alt="tentang kami" />
</div>
<div class="content">
<h3>GEOMETRI</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ea ducimus
aliquid eligendi eum dolor error necessitatibus quis corrupti unde
ipsa?
</p>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Nam omnis
atque laborum dolorum rerum blanditiis, tempora officiis iste porro
aliquid.
</p>
</div>
</div>
</section>
<!-- ABOUT SECTION END -->
<!-- Footer Start -->
<footer>
<div class="sosial">
<a href="#"><i data-feather="instagram"></i></a>
<a href="#"><i data-feather="facebook"></i></a>
<a href="https://www.instagram.com/yaazbi._?igsh=MWR3bjM4YnZ1cHVocQ=="><i data-feather="x"></i></a>
</div>
<div class="links">
<a href="#home">Home</a>
<a href="#about">Tentang Kami</a>
<a href="#contact">Kontak</a>
</div>
<div class="credit">
<p>Created By <a href="">Yazbi</a> © 2024.</p>
</div>
</footer>
<!-- Footer End -->
<!-- feather icon -->
<script>
feather.replace();
</script>
<!-- my javasript -->
<script src="js/script.js"></script>
</body>
</html>