-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1.13 KB
/
index.html
File metadata and controls
35 lines (31 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Lobster fonts -->
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<!-- Cabin fonts -->
<link href="https://fonts.googleapis.com/css?family=Cabin:400,700" rel="stylesheet">
<!-- style.css -->
<link rel="stylesheet" href="style.css">
<!-- favicon -->
<link rel="icon" href="favicon.ico">
<title>Score Keeper</title>
</head>
<body>
<div class="wrapper">
<h1><span id="p1Display">0</span> to <span id="p2Display">0</span></h1>
<div class="play">
<p class="lead">Playing to: <span>3</span></p>
<input type="number" name="" value="" placeholder="3">
</div>
<div class="buttons">
<button id="p1" type="button" name="button">Player One</button>
<button id="p2" type="button" name="button">Player Two</button>
<button id="reset" type="button" name="button">Reset</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>