-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 1.46 KB
/
index.html
File metadata and controls
34 lines (32 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title>Programming Joke Generator</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="manifest" href="favicons/site.webmanifest">
<link rel="mask-icon" href="favicons/safari-pinned-tab.svg" color="#000000">
<meta name="msapplication-TileColor" content="#2d89ef">
<meta name="theme-color" content="#ffffff">
</head>
<body class="crt">
<main>
<section>
<p>Click "GET JOKE" to tell a programming joke...<span class="blink">▒</span></p>
<div class="button">Get Joke</div>
</section>
<section>
<h2 class="setup"></h2>
<div class="deliveryBtn hide">Show Response</div>
<h2 class="delivery hide"></h2>
</section>
</main>
<p class="credit">
by<a target="_blank" href="https://github.com/mViolet">mViolet</a>. CRT effect by <a target="_blank" href="https://github.com/cakenggt">Alec Lownes</a>. Font by "VileR" (More info:<a target="_blank" href="https://int10h.org/">int10h.org</a>)
</p>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>