-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<title>Feel Tha Heat</title>
<script src="src/Thermostat.js"></script>
<style>
.button {
background-color: #45AF50;
border: none;
color: white;
padding: 5px 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 25px;
margin: 2px 2px;
cursor: pointer;
box-shadow: 5px 10px 8px #888888
}
h1 {
letter-spacing: 20px;
}
</style>
</head>
<body>
<center><h1>THERMOSTAT</h1></center>
<center><a id="switchmode" class="button"><text class="fas fa-bolt"> Power Saver </text></a></center>
<br><center>Currently: <text id="psm"></text></center></br>
<h2><center><text id="temperature"></text>°C</center></h2>
<center><a id="up" class="button"><i class="fas fa-sort-up"></i></a></center>
<center><a id="reset" class="button"><i class="fas fa-sync-alt"></i></a></center>
<center><a id="down" class="button"><i class="fas fa-sort-down"></i></a></center>
</br>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="./interface.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
</body>
<section>
<center><h2>Current temperature: <span id="current-temperature"></span>°C</h2></center>
<center><select id="current-city"></center>
<option value="london">London</option>
<option value="melbourne">Melbourne</option>
<option value="barcelona">Barcelona</option>
<option value="new york">New York</option>
</select>
</section>
</html>