-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (41 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Sit</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<body>
<div class="w3-sidebar w3-bar-block w3-collapse w3-card w3-animate-left" style="width:200px;" id="mySidebar">
<button class="w3-bar-item w3-button w3-large w3-hide-large" onclick="w3_close()">Close ×</button>
<a href="#" class="w3-bar-item w3-button">Home</a>
<a href="#" class="w3-bar-item w3-button">About Me</a>
</div>
<div class="w3-main" style="margin-left:200px">
<div class="w3-gray">
<button class="w3-button w3-xlarge w3-hide-large" onclick="w3_open()">☰</button>
<div class="w3-container">
</div></div></div>
<script>
function w3_open() {
document.getElementById("mySidebar").style.display = "block";
}
function w3_close() {
document.getElementById("mySidebar").style.display = "none";
}
</script>
<p align="center"> <font size="6px" class="text-info">Simple Sit</font></font></p>
<center>
<!-- YouTube Video -->
<iframe width="300" height="150" src="https://www.youtube.com/embed/5Vg3qRc4ZBw" frameborder="0" allowfullscreen></iframe>
<!-- Deskripsi -->
<p>Download Simple Sit Addon</p>
<!-- Tombol Download -->
<a href="https://www.mediafire.com/file/wy5kgol3pcy3pnp/Simple_Sit.mcaddon/file">
<button>Download</button>
</a>
</center>
</body>
</html>