-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathendpage.html
36 lines (30 loc) · 1008 Bytes
/
endpage.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
<html>
<head>
<title>Hackaholic - Prelims</title>
<link rel="stylesheet" href="fonts/stylesheet.css" />
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<script src="http://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha256-/SIrNqv8h6QGKDuNoLGA4iret+kyesCkHGzVUUV0shc=" crossorigin="anonymous"></script>
<script src="typed.js" type="text/javascript"></script>
</head>
<body>
<div class="header">
<center>
<h1 style="font-family: 'PT Mono';margin-top: 50px;display: inline-block;height: 49px;">Hackaholic 2018</h1>
</center>
</div>
<div class="container">
<div class="question" style="margin-top: 0px;padding-top: 0px;">See you next year!
</div>
</div>
<script>
$("h1").typed({
strings: ["Thanks For Coming To Hackaholic!"],
typeSpeed: 100,
backSpeed: 50,
contentType: 'html',
cursorChar: '|',
});
</script>
</body>
</html>