-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (39 loc) · 1.15 KB
/
index.html
File metadata and controls
51 lines (39 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=\, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bowlby+One&display=swap" rel="stylesheet">
<title>2co2 timetable by avirals.</title>
</head>
<body>
<div class="box1">
<div id="text"></div>
<div class="box2">
<a href="timet.html" class="a1">
<button class="btn1"> START</button></a>
<br>
<br>
<a href="credits.html"class="a2">
<button class="btn2">CREDITS</button>
</a>
</div></div>
<div id="particles-js"></div>
<script src="js/particles.js"></script>
<script src="js/app.js"></script>
<script type="text/javascript">
var i=0,text;
text="2C02 BATCH TIMETABLE";
function typing(){
if(i<text.length){
document.getElementById("text").innerHTML += text.charAt(i);
++i;
setTimeout(typing,50);
}
}
typing();
</script>
</body>
</html>