-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (42 loc) · 1.16 KB
/
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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Architecture Vizualizer</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Kitchen Prototype</h1>
<p>Slide the buttons to the right to see your kitchen transformation!</p>
</header>
<main>
<!--Section 1-->
<div id="sink" class="slider-box">
<figure>
<div id="sink_divisor"></div>
</figure>
<input type="range" min="0" max="100" value="0" id="sink_slider" oninput="moveSink_Divisor()">
</div>
<!--Section 2-->
<div id="island" class="slider-box">
<figure>
<div id="island_divisor"></div>
</figure>
<input type="range" min="0" max="100" value="0" id="island_slider" oninput="moveIsland_Divisor()">
</div>
<!--Section 3-->
<div id="oven" class="slider-box">
<figure>
<div id="oven_divisor"></div>
</figure>
<input type="range" min="0" max="100" value="0" id="oven_slider" oninput="moveOven_Divisor()">
</div>
</main>
<!--js scripts containing slider functions-->
<script src="./js/scripts.js"></script>
</body>
<footer>
<address>Made 22 Feb 2020<br>
by Scot Nielson.</address>
</footer>
</html>