-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (55 loc) · 1.43 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
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Development Checklist</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="main">
<h1>Godot game modification checklist</h1>
<div id="checklist"></div>
</div>
<aside class="sidebar">
<h2>Instructions</h2>
<p>Use this checklist to enhance your Godot game project. Check off items as you complete them to track your progress.</p>
<p>For each category, complete at least one improvement to earn a point. Aim to complete as many improvements as possible to enhance your game.</p>
<div id="livescore"></div>
<div id="grade" class="grade-box"></div>
<h3>Grade boundaries</h3>
<table>
<tr>
<td>No. of tasks</td>
<td>Grade awarded</td>
</tr>
<tr>
<td>0-3</td>
<td>Incomplete</td>
</tr>
<tr>
<td>4-7</td>
<td>Emerging</td>
</tr>
<tr>
<td>8-11</td>
<td>Developing</td>
</tr>
<tr>
<td>12-15</td>
<td>Competent</td>
</tr>
<tr>
<td>16-19</td>
<td>Proficient</td>
</tr>
<tr>
<td>20+</td>
<td>Expert</td>
</tr>
</table>
</aside>
<script src="js/main.js"></script>
</body>
</html>