-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (37 loc) · 755 Bytes
/
index.html
File metadata and controls
42 lines (37 loc) · 755 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>The DOM playground</title>
<link rel="stylesheet" href="app.css">
<script src="app.js"></script>
</head>
<body>
<div id="greeting">
Hello There!
</div>
<hr>
<div class="content">
Essentials:
</div>
<div id="essentials">
<ul>
<li>milk</li>
<li class="selected">honey</li>
<li>water</li>
<li>wine</li>
<li>beer</li>
</ul>
</div>
<div>
<img src="./images/honey.jpeg" height="60" width="60" alt="beer">
</div>
<div id="ghosting">
Touch me and I'll disappear!
</div>
<div id="resize">
Touch me and I'll turn twice as wide!
</div>
<input type="submit" value="Reset" id="reset"></input>
</body>
</html>