-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.11 KB
/
index.html
File metadata and controls
27 lines (27 loc) · 1.11 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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<link rel="apple-touch-icon" sizes="180x180" href="./public/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./public/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./public/images/favicon/favicon-16x16.png">
<link rel="manifest" href="./public/images/favicon/site.webmanifest">
<link rel="stylesheet" href="./style.css">
<title>Adventures</title>
</head>
<body>
<div class="menu">
<select name="characters" id="character">
<option value="mask_dude">Mask Dude</option>
<option value="ninja_frog">Ninja Frog</option>
<option value="pink_man">Pink Man</option>
<option value="virtual_guy">Virtual Boy</option>
</select>
<input class="start" type="button" value="Jogar">
</div>
<canvas width="1036" height="576"></canvas>
<script src="./public/scripts/main.js" type="module"></script>
</body>
</html>