-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.82 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css"/>
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="icon" href="cube.ico">
<title>Dumb Trivia!</title>
</head>
<body>
<div class="centered">
<div class="titlerect">
<div class="grid-container">
<form action="/index.html">
<button class='bx bx-cube-alt bx-tada-hover' style="color: white; font-size: 50px; margin-bottom: 20px; background-color: transparent; border: 0px;"></button>
</form>
<form action="/help.html">
<button class="fontformat" style="margin-bottom: 20px; margin-left: 40%; margin-top: 10px; background-color: transparent; border: 0px; --size: 30px">Help</button>
</form>
</div>
<div class="titletextrect">
<div class="fontformat" style="--size: 50px">
Dumb Trivia Game
<div class="fontformat" style="--size: 20px">
<br><br>by ShutBaton
</div>
</div>
</div>
<br>
<form action="/trivia.html">
<button class="startbtn fontformat" style="--size: 30px">Start Game</button>
</form>
</div>
<div class="otherrect" style="margin-top: 20px;">
<form action="/others.html">
<button class="otherbtn fontformat" style="--size: 30px">Other Games</button>
</form>
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>