-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 898 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tossing</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<h1>Toss a coin</h1>
<p>Put the team name against Head and Tail</p>
<div class="box">
<label for="user_input1">Head</label>
<input type="text" id="user_input1">
<label for="user_input2">Tail</label>
<input type="text" id="user_input2">
</div>
<p>Click the coin</p>
<div class="container">
<div class="image">
<img src="1.jpeg" alt="coin" class="center">
</div>
</div>
<h2 id="show"></h2>
<div class="button1">
<button type="submit" onClick="refreshPage()">Restart</button>
</div>
<script src="index.js"></script>
</body>
</html>