-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 1.6 KB
/
Copy pathindex.html
File metadata and controls
44 lines (39 loc) · 1.6 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>War</title>
<link rel="icon" type="image/png" href="images/favicon.png" />
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500;600;700&display=swap" rel="stylesheet">
<script src="js/main.js" type="module" defer></script>
<!-- Google tag (gtag.js) -->
<script async
src="https://www.googletagmanager.com/gtag/js?id=G-TEY1EQR6DL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-TEY1EQR6DL');
</script>
</head>
<body>
<main>
<h1 id="status">Game of War</h1>
<h3 id="remaining">Remaining cards: 52</h3>
<button id="new-deck">New deck</button>
<div class="cards-container">
<h3 class="score" id="computer">Computer: 0</h3>
<div class="cards" id="cards">
<div class="card" id="card-1"></div>
<div class="card" id="card-2"></div>
</div>
<h3 class="score" id="me">Me: 0</h3>
</div>
<button id="draw">Draw</button>
</main>
</body>
</html>