-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (35 loc) · 881 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
37
38
39
40
41
42
<!DOCTYPE html>
<script>
function link() {
wage = document.getElementById("wage").value;
window.location ='main.html?wage=' +wage;
}
</script>
<html>
<head>
<link href="main.css" rel="stylesheet">
<title>Money Monkey</title>
</head>
<body>
<div class="mainTitle">MONEY MONKEY
<img src="mrMonkey.png" alt="monkey" width = "150" height = "150" />
<div class="header">
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Lorem</a></li>
<li><a href="#">Ipsum</a></li>
<li><a href="#">Slay</a></li>
</ul>
</nav>
</div>
</div>
<div class="input">
<h3>Type hourly wage below</h3><br>
<form>
<input type="number" value="15.00" id="wage" step="0.05" min="0" max="1000"><br>
</form>
<button onclick="link()">START SHIFT</button>
</div>
</body>
</html>