-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·38 lines (30 loc) · 1022 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Jonesy | An Indiana Jones Generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Luka Čupić" />
<link rel="shortcut icon" type="image/png" href="/favicon.png" />
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="styles/cursor.css" />
</head>
<body onload="loadFile()" class="noselect">
<div class="top">
<div class="title">Jonesy</div>
<div class="desc">An Indiana Jones Generator</div>
</div>
<div class="center">
<div id="phrase" class="phrase center-top">-</div>
<div>
<button id="button" type="button" class="button" onclick="generate(); changeContent()">
Click to generate
</button>
</div>
</div>
<div class="bottom">
Made by <a href="https://github.com/lukacupic" target="_blank" rel="noopener noreferrer">Luka</a>
</div>
<script src="scripts/main.js"></script>
</body>
</html>