-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (33 loc) · 979 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>replit</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
</head>
<body>
<div class='container'>
<div class='row header'>
<h1>WAR! Card Game</h1>
</div>
<div class='row main'>
<div class='col play1'>
<h2 id="playScore"></h2>
<img id='playerOne' src='' alt='playing card'>
</div>
<div class='col play2'>
<h2 id="botScore"></h2>
<img id='playerTwo' src='' alt='playing card'>
</div>
</div>
<div class='row footer'>
<h3></h3>
<button class='draw'>Draw</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>