-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 853 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 853 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Of War</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Exo+2:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="top">
<button id="new-deck">New Deck</button>
<p id="remaining"></p>
</div>
<h2 id="header">Game of War</h2>
<h3 id="computer-score">Computer score: 0</h3>
<div id="cards">
<div class="card-slot"></div>
<div class="card-slot"></div>
</div>
<h3 id="my-score">My score: 0</h3>
<button id="draw-cards" class="draw">Draw</button>
<script src="index.js"></script>
</body>
</html>