-
Notifications
You must be signed in to change notification settings - Fork 0
/
learn.html
46 lines (44 loc) · 964 Bytes
/
learn.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dom Selection</title>
<style>
* {
border: 2px solid #dedede;
padding: 15px;
margin: 15px;
}
html {
margin: 0;
padding: 0;
}
body {
max-width: 600px;
margin: 30px auto;
font-family: sans-serif;
color: #333;
}
</style>
</head>
<body>
<h1 id="judul">Hello World</h1>
<div id="container">
<section id="a">
<p class="p1">paragraf 1</p>
<a href="http://instagram.com/sandhikagalih">Instagram Sandhika Galih</a>
<p class="p2">paragraf 2</p>
<p class="p3">paragraf 3</p>
</section>
<section id="b">
<p>paragraf 4</p>
<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ul>
</section>
</div>
<script src="./assets/js/learnScript.js"></script>
</body>
</html>