-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (67 loc) · 1.85 KB
/
Copy pathindex.html
File metadata and controls
72 lines (67 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contoh HTML Lengkap</title>
<style>
/* Gaya CSS */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
header
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav {
background-color: #444;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
padding: 0 15px;
}
nav a:hover {
background-color: #666;
}
section {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Selamat Datang di Website Kami</h1>
</header>
<nav>
<a href="#">Beranda</a>
<a href="#">Tentang Kami</a>
<a href="#">Kontak</a>
</nav>
<section>
<h2>Ini adalah Bagian Konten</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam in odio in ex porta commodo. Etiam ut libero ut lacus rhoncus lacinia sit amet vel turpis.</p>
<p>Nulla facilisi. Duis eu mauris vel justo pretium volutpat. Sed auctor enim in aliquet vehicula. Proin aliquet lectus in risus vestibulum, in tempus mi ultrices.</p>
</section>
<footer>
<p>Hak Cipta © 2024 Website Kami. All Rights Reserved.</p>
</footer>
</body>
</html>