-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="favicon.ico" type="image/ico">
<title>Darts Scoreboard</title>
<style>
.button {
/* background-color: rgb(0, 0, 0); */
border: none;
color: white;
padding: 0px 0px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 36px;
font-weight: bold;
margin: 0px 0px;
cursor: pointer;
}
</style>
</head>
<body style="background-color: black; margin: 0">
<div id="left_div" style="float: left; width: 50%; height: 100vh;">
<button class="button" style="width: 100%; height: 30%; color: black; background-color: maroon"><s>301</s></button>
<button class="button" style="width: 100%; height: 40%; color: black; background-color: firebrick"><s>501</s></button>
<button class="button" style="width: 100%; height: 30%; color: black; background-color: sienna"><s>701</s></button>
</div>
<div id="right_div" style="float: right; width: 50%; height: 100vh;">
<button class="button" style="width: 100%; height: 50%; background-color: midnightblue" onclick="javascript:location.href='s-cricket.html'">Standard Cricket</button>
<button class="button" style="width: 100%; height: 50%; color: black; background-color: steelblue"><s>Team Cricket</s></button>
</div>
</body>
</html>