forked from DSCKGEC/Developing-Applications-for-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (72 loc) · 2.74 KB
/
index.html
File metadata and controls
75 lines (72 loc) · 2.74 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Dashboard</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap" rel="stylesheet">
</head>
<body>
<div>
<nav>
<div class="container">
<a href="/" class="brand">Web Dashboard 0.1</a>
<ul>
<li>
<a href="#" class="active navlink ">Home</a>
</li>
<li>
<a href="#" class="navlink">About</a>
</li>
<li>
<a href="#" class="navlink">Purchase</a>
</li>
</ul>
</div>
</nav>
<div class="container">
<h1>Welcome User</h1>
<div class="section-container">
<section>
<h2>Turn on and off things</h2>
<div class="buttons_list" id="buttons_list">
<div class="button_container">
<h3>Light 01</h3>
<button>Turn on</button>
</div>
<div class="button_container">
<h3>Light 02</h3>
<button>Turn on</button>
</div>
</div>
</section>
<section class="weather">
<h2>Weather near me</h2>
<div class="weather_item">
<p id="temp">22°C</p>
</div>
<div class="weather_item">
<p id="condition">Sunny</p>
</div>
</section>
<section>
<h2>Set Values</h2>
<div class="slider_list" id="slider_container">
<div class="slider_container">
<h3>Item 01 - <strong>17</strong> </h3>
<input type="range" min="0" max="100" value="17">
</div>
<div class="slider_container">
<h3>Item 02 - <strong>71</strong> </h3>
<input type="range" min="0" max="100" value="71">
</div>
</div>
</section>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>