-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 902 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 902 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Game</title>
</head>
<body id="body">
<div class="container d-flex justify-content-center mt-4">
<div class="gameBlock" id="gameBlock">
</div>
</div>
<p class="text-center" id="text">Objetivos Capturados: 0</p>
<script src="js/logic.js"></script>
<script src="js/main.js"></script>
<script>
window.onload = () => {
loadGame();
}
</script>
</body>
</html>