-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (52 loc) · 1.81 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- css -->
<link rel="stylesheet" href="style.css">
<title>Score Keeper</title>
</head>
<body>
<section class="score">
<div class="scoreDiv">
<h1>Score Keeper🏓</h1>
<img src="table-tennis.jpg" alt="Score Keeper">
<h2>
<span id="p1Score">0</span> to <span id="p2Score">0</span>
</h2>
<div class="flex-box">
<label for="lavel">Play To: </label>
<select name="lavel" id="lavel"> lavel
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
</select>
</div>
<br>
<div class="divBtnDivBox">
<button id="p1Button">Player One</button>
<button id="reset">Reset</button>
<button id="p2Button">Player Two</button>
</div>
<div class="h3div">
<h3></h3>
</div>
</div>
</section>
<section class="foot">
<div>
Designed and developed by
<a href="https://linkedin.com/in/mitrarnab">Arnab Mitra</a>
</div>
</section>
<script src="demo.js"></script>
</body>
</html>