-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (53 loc) · 1.69 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
45
46
47
48
49
50
51
52
53
54
55
56
57
<!-- To do list
Understand chatGPT logic lol
Add more logos
- windows
- apple
- linux
Build in functionality for multiple different games
Link to source code in banner
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Logo Drawing Game</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<h1>Logo Drawing Game</h1>
</header>
<div id="menu">
<h2>Select Logo Set</h2>
<button class="logo-set-btn" data-set="tech">Software</button>
<button class="logo-set-btn" data-set="football">Football</button>
<button class="logo-set-btn" data-set="flags">Flags</button>
</div>
<div id="game-content" class="hidden">
<div id="sections-container"></div>
<template id="section-template">
<div class="logo-section">
<h2>Draw the Logo</h2>
<div class="drawing-area">
<div class="draw-box">
<canvas class="draw-canvas"></canvas>
</div>
<div class="hidden-logo">
<button class="reveal_logo">Reveal Logo</button>
<div class="logo">
<img src="" alt="Logo">
</div>
</div>
</div>
<div class="row colours">
<ul class="options"></ul>
<button class="clear-canvas">Clear Canvas</button>
</div>
</div>
</template>
</div>
</body>
</html>