-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
37 lines (31 loc) · 1010 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<title>Klockcraft 1.20</title>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdnjs.cloudflare.com/ajax/libs/brython/3.12.0/brython.js"></script>
<script type="text/javascript" src="fix-webm-duration.js"></script>
<style>
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
center, body {
font-family: 'Open Sans', sans-serif;
}
h1 {
color: gold;
}
h2 {
color: lightgreen;
}
</style>
<link rel="stylesheet" href="styles.css">
</head>
<center><h1>Still in development! Be patient!!</h1></center>
<center><h2><a href="https://github.com/Klockcraft-Offical/Klockcraft-1.20">Click here to visit our GitHub Repository</a></h2></center>
<body onload="brython()">
<script type="text/python">
from browser import document
import browser
</script>
</body>
</html>