-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Shapes by TFCB93</title>
<link rel="icon" type="image/x-icon" href="public/images/favicon.ico">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="instruction" class="instruction-container">
<div class="instruction-card">
<div class="title">
<div class="title-gradient">
</div>
</div>
<div class="Description">
</div>
<div class="warning">
<h1>Seizure warning!</h1>
<h3>
This page contains flashing images
</h3>
</div>
<div class="links">
<a href="https://github.com/tfcb93/Random-Shape-Generator" target="_blank" id="github-link">github</a>
<a href="https://tfcb93.com/" target="_blank" id="website-link">website</a>
</div>
<h1 class="bottom-text">
Click on the page to start
</h1>
<h1 class="cookies-text">
This page does not use cookies so far
<br />
Use this page at your own risk
</h1>
</div>
</div>
<canvas id="canvas" width="640" height="480"></canvas>
</body>
<script type="module" src="src/index.js"/></script>
</html>