-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.14 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
<html>
<link rel="stylesheet" href="css/style.css">
<head>
<title>Thermostat</title>
</head>
<body bgcolor="#666666">
<center>
<font face="arial" color="#444444">
<div id="main">
<h3 id="temp">Temperature</h3>
<input type="button" id="temp-up" value="+">
<input type="button" id="temp-down" value="-">
<input type="button" id="temp-reset" value="Reset">
<h3>Power Saving Mode is:</h3>
<h3 id="ps-status">ON</h3>
<input type="button" id="powersave-on" value="On">
<input type="button" id="powersave-off" value="Off">
<section>
<h3>Current temperature: <span id="current-temperature"></span></h3>
<select id="current-city">
<option value="london">London</option>
<option value="new+york">New York</option>
<option value="paris">Paris</option>
<option value="tokyo">Tokyo</option>
<option value="berlin">Berlin</option>
</section>
<script src="jquery.js"></script>
<script src="interface.js"></script>
<script src="src/thermo.js"></script>
</div>
</body>
</html>