-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (55 loc) · 2.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="enigmatology, asymptote, tutorial, math, programming, coding, blog, css, coolcarsontherun">
<link href="css/style.css" rel="stylesheet">
<link href="css/home.css" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico?">
<title>enigmatology</title>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3170NMGK41"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3170NMGK41');
</script>
</head>
<body>
<div id="navbar"></div>
<div id="top-section">
<div id="header"></div>
<div id="description">a blog of random tutorials</div>
<div id="top-links">
<a id="about" href="mock-contests/contests.html"><div class="link-text">Mock Contests</div></a>
<a id="life" href="css-blog"><div class="link-text">Web Design Tutorials</div></a>
<a id="web-design" href="asymptote-blog"><div class="link-text">Asymptote Tutorials</div></a>
<a id="asymptote" href="/"><div class="link-text">Home</div></a>
</div>
</div>
<script>
var i = 0;
var txt = 'enigmatology';
var speed = 100;
window.onload = function typeWriter() {
if (i < txt.length) {
document.getElementById("header").innerHTML += txt.charAt(i);
i++;
setTimeout(typeWriter, speed);
}
}
</script>
<!-- Insert these scripts at the bottom of the HTML, but before you use any Firebase services -->
<!-- Firebase App (the core Firebase SDK) is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.6.1/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.6.1/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.6.1/firebase-auth.js"></script>
<script src="js/authentication/general.js"></script>
<script src="components/addnavbar.js"></script>
</body>
</html>