-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (27 loc) · 964 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
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Place your betteronis</title>
<link href="./stylesheets/application.css" rel="stylesheet" type="text/css" title="Default Style">
</head>
<body>
<h3 id="moneyz">Cash moneyz: $<span id="bank">100</span></h3>
<form id="bets-form">
Please enter a bet between $5 and $10 (no cents please!) <input type="text" name="bet">
</form>
<form id="guessing-form">
Please guess a number between 1 and 10 (no decimals allowed) <input type="text" name="guess">
</form>
<img id="sans" src="./gifs/sans.gif"/>
<div id="flash-correct">That is correct! You go Glen Coco!</div>
<div id="flash-almost">Close! You neither gained nor lost money</div>
<div id="flash-incorrect">Get shrekt m8. You lost moneyz</div>
<script src="jquery-2.2.1.min.js"></script>
<script src="application.js"></script>
<audio autoplay loop>
<source src="./music/undertalemusic.mp3">
</audio>
</style>
</body>
</html>