-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 878 Bytes
/
index.html
File metadata and controls
32 lines (31 loc) · 878 Bytes
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<title>Yes or No</title>
<script
src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Welcome to my page!</h1>
<p>To flip the coin, click on the button below</p>
<div id="coin"></div>
<p id="counterYes"></p>
<p id="counterNo"></p>
<button id="flipButton">Flip Coin</button>
<p id="result"></p>
<div>
<p>also try a random number game!</p>
<a href="number.html"> ->Random Number Game<-</a>
</div>
<div>
<p>FORTUNA GAME AVAILABLE</p>
<a href="fortuna.html"> ->Wheel of fortuna<-</a>
</div>
<script src="coin.js"></script>
</body>
</html>