-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths03.html
57 lines (52 loc) · 2.21 KB
/
s03.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>M68: Hell is Real.</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='https://www.w3schools.com/w3css/4/w3.css'>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=DotGothic16&display=swap" rel="stylesheet">
<style>
body{
background-color: darkblue;
}
div{
text-decoration: none;
color: cyan;
text-align: center;
font-size: 25px;
font-family: 'DotGothic16', sans-serif, monospace;
margin-left: 180px;
margin-right: 180px;
margin-top: 100px;
}
</style>
</head>
<body>
<div id="app"></div>
<!--<div class="navbar">
<div class="bar">
<a href="main.html"><b>[ M68 ]</b></a>
<a href="main.html"><b>[ About ]</b></a>
<a href="main.html"><b>[ People ]</b></a>
<a href="main.html"><b>[ Research ]</b></a>
<a href="main.html"><b>[ Contact ]</b></a>
</div>
</div>-->
<script src="https://unpkg.com/typewriter-effect@latest/dist/core.js"></script>
<script type='text/javascript'>
var app = document.getElementById('app');
var typewriter = new Typewriter(app, {
loop: false, cursor : '_', delay : 60
});
typewriter.typeString('Welcome to the home of the M68 Project. We are glad to have you with us in our quest to unite the world with technological evolution. We hope that you will do great things in the times to come and play your part in changing the world, for the better.')
.pauseFor(1000).start();
typewriter.typeString('<br><br>To reach us, solve this: <br> 518ADD6C7EB7EC237526FD6D76643078D1EE30B465744B4BAF086F0BEC0B8D42 <br> with this:<br>kehdicbqirtnxfwkzpauerbxgcoqtvmv')
.pauseFor(500).start();
typewriter.changeDelay(100).typeString('<br><br>If you can\'t, You don\'t belong here...')
.start();
</script>
</body>
</html>