-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 910 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
<!doctype html>
<head> <link rel="stylesheet" type"text/css" href="team4.css">
</head>
<body>
<a href = "index.html">
<img src="README.jpg" alt="aLot" style="width:100%;"></a>
<div class="content">
<div class="buttons">
<div class="buttonsD"> <a href="food.html"><div><h3 class="food">FOOD</h3></div></a>
<a href="fun.html"><div><h3 class="fun">FUN</h3></div></a>
</div>
</div>
<div class="slider">
<h4>Freetime: </h4>
<input type=range min=0 max=90 value=15 class=vertical orient=vertical id=fader step=1 onchange="outputUpdate(value)">
<script>
function outputUpdate(vol) {
document.querySelector('#volume').value = vol;
}
</script>
</div>
</div>
<div class="navigation">
<ul id="menu">
<li><a href="history.html">History</a></li>
<li><a href="profile.html">Profile</a></li>
<li><a href="friends.html">Find Friends</a></li>
</ul>
</div>
</body>