-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (46 loc) · 1.64 KB
/
index.html
File metadata and controls
47 lines (46 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<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>Friendly JavaScript</title>
</head>
<body>
<header>
<h1>Welcome to my friend website</h1>
</header>
<main>
<section class="friends">
<div id="friends">
<div class="friend">
<h3 class="friend-name">Friend-1</h3>
<p>Lorem ipsum dolor sit amet.</p>
</div>
<div class="friend">
<h3 class="friend-name">Friend-2</h3>
<p>Non sed veniam asperiores vero?</p>
</div>
<div class="friend">
<h3 id="third-friend" class="friend-name">Friend-3</h3>
<p>Labore doloribus numquam voluptatum quas!</p>
</div>
<div class="friend">
<h3 class="friend-name">Friend-4</h3>
<p>Molestias quod corporis neque odio.</p>
</div>
<div class="friend">
<h3 class="friend-name">Friend-5</h3>
<p>At, eius? Autem, aliquid repellat?</p>
</div>
</div>
<div class="operations">
<button id="apply-bg">Apply Background</button>
<button id="center-third">Center the Third</button>
<button id="add-friend">Add New Friend</button>
</div>
</section>
</main>
<script src="js/dom.js"></script>
</body>
</html>