-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (28 loc) · 769 Bytes
/
index.html
File metadata and controls
33 lines (28 loc) · 769 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Video Game Idea Generator</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<style>
body {font-family: 'Roboto', sans-serif;}
@media (prefers-color-scheme: dark) {
body {
background: #24292e;
color: #d6d8da;
}
a {
color: #e39777 !important;
}
footer {
background: #32383f;
}
}
</style>
</head>
<body>
<h1 id="idea">Ideas for the next AAA video game</h1>
<button onclick="GenerateGameIdea()">Generate Idea!</button>
</body>
<script src="generator.js"></script>
</html>