-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdom.html
More file actions
41 lines (39 loc) Β· 1.15 KB
/
dom.html
File metadata and controls
41 lines (39 loc) Β· 1.15 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
<!DOCTYPE html>
<html lang="en">
// Dom Html
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DOM</title>
</head>
<body>
<div id="friend-container">
<div class="friend">
<h3 class="friend-name">Friend-1</h3>
<p>Lorem, ipsum.</p>
</div>
<div class="friend">
<h3 class="friend-name">Friend-2</h3>
<p>Voluptatem, nesciunt?</p>
</div>
<div class="friend">
<h3 class="friend-name">Friend-3</h3>
<p>Repudiandae, inventore.</p>
</div>
<div class="friend">
<h3 class="friend-name">Friend-4</h3>
<p>Quam, sapiente.</p>
</div>
</div>
<div>
<h2>Control room</h2>
<button id="add-border">Add border</button>
<button onclick="addBackgroundColor()">Add Background</button>
<button id="add-friend">Add Friend</button>
<button>Color friend Name</button>
<button>Extra</button>
</div>
<script src="dom.js"></script>
</body>
</html>