- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
33 lines (31 loc) · 1.05 KB
/
Copy pathindex.html
File metadata and controls
33 lines (31 loc) · 1.05 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Thermostat</title>
<scriptsrc="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<scriptsrc="jasmine-standalone-3/src/thermostat.js"></script>
<scriptsrc="interface.js"></script>
<linkhref="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<section>
<h1id="temprature"></h1>
<p>
<buttonid="temprature-up" class="a">+</button>
<buttonid="temprature-down" class="a">-</button>
<buttonid="temprature-reset" class="a">reset</button></br>
<divclass="c">power saving mode is:</div>
<spanid="power-saving-status" class="d">on</span></br>
<buttonid="powersaving-on" class="b">PSM on </button>
<buttonid="powersaving-off" class="b">PSM off</button>
</p>
</section>
<section>
<h1>Current temperature: <spanid="current-temperature"></span></h1>
<formid="select-city">
<inputid="current-city" type="text" placeholder="Enter a city" class="e"></input>
<inputtype="submit" class="f"></input>
</form>
</section>
</body>
</html>