-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (74 loc) · 2.3 KB
/
Copy pathindex.html
File metadata and controls
77 lines (74 loc) · 2.3 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
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
71
72
73
74
75
76
77
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Better not get leaked">
<meta name="robots" content="noindex">
<meta name="author" content="Espy">
<link rel="stylesheet" href="projects/style.css">
<link rel="icon" type="image/x-icon" href="images/Minecraft-Blocks/tnt_side.png">
<script src="projects/java.js"></script>
<title>Espyration website</title>
</head>
<body>
<header>
<table>
<td>
<a href="#1">Random Character</a>
</td>
<td>
<a href="#2">Random Block</a>
</td>
</table>
</header>
<main>
<div class="RandomChar" id="1">
<h1 id="a">Random character generator</h1>
<hr>
<table class="t-1">
<tr>
<td id="box-1:1"></td>
<td id="box-1:2"></td>
<td id="box-1:3"></td>
<td id="box-1:4"></td>
</tr>
<tr>
<td id="box-2:1"></td>
<td id="box-2:2"></td>
<td id="box-2:3"></td>
<td id="box-2:4"></td>
</tr>
<tr>
<td id="box-3:1"></td>
<td id="box-3:2"></td>
<td id="box-3:3"></td>
<td id="box-3:4"></td>
</tr>
<tr>
<td id="box-4:1"></td>
<td id="box-4:2"></td>
<td id="box-4:3"></td>
<td id="box-4:4"></td>
</tr>
</table>
<div class="RC-Generate">
<a href="" onclick="GenerateRC(); return false;" id="RandomChar-Generate">Generate</a>
</div>
<div class="RC-Reset">
<a href="" onclick="ResetRC(); return false;" id="RandomChar-Reset">Reset</a>
</div>
</div>
</main>
<footer>
<table>
<tr>
<td>
<a href="">
back to top
</a>
</td>
</tr>
</table>
</footer>
</body>
</html>