-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (94 loc) · 2.37 KB
/
index.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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<title>First HTML</title>
</head>
<body>
<a href="./register.html">
Register
</a>
<!-- Ini judul -->
<h1>
Halo One
</h1>
<h2>Halo Two</h2>
<!-- Ini isinya -->
<div>
<p>
<strong>Lorem ipsum</strong> dolor sit, amet consectetur adipisicing elit. Neque consequatur, <em>fugiat atque</em> possimus blanditiis itaque ipsum voluptatem enim libero aliquam rerum consequuntur <u>asperiores porro</u> facere officia consectetur beatae sit minus!
</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod consequuntur mollitia sed vel natus alias at provident veniam facilis a accusamus repellat et quam harum quaerat atque, placeat ducimus earum!
</p>
</div>
<!-- link: anchor -->
<!-- attribute key -->
<a href="https://google.com">
Go to google
</a>
<!-- image -->
<!-- online image -->
<img src="https://hacktiv8.com/img/logo-01.png__vzu2vhp2VRX%2Bewg7J0bPlaA0f4f1c19c0064d527c72d44cfe007a08" />
<!-- local image -->
<!-- <img src="file:///home/hijup/Downloads/..." /> -->
<!-- <img src="./images/burger-king.jpg" /> -->
<!-- video -->
<!-- <video
src="https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4"
controls
width="80%"
/> -->
<figure>
<video
src="https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4"
controls
width="80%"
></video>
</figure>
<!-- list -->
<h3>My favorite foods</h3>
<ul> <!-- unordered list -->
<li>Bakso</li>
<li>Pempek</li>
<li>Bakpia</li>
</ul>
<h3>My favorite animals</h3>
<ol> <!-- ordered list -->
<li>Dog</li>
<li>Cat</li>
<li>Elephant</li>
</ol>
<!-- button -->
<button>Login</button>
<br />
<br />
<!-- table -->
<table border="1">
<thead>
<tr>
<td>Number</td>
<td>Name</td>
<td>Phone</td>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Rahmat</td>
<td>123</td>
</tr>
<tr>
<td>2</td>
<td>Hidayat</td>
<td>321</td>
</tr>
</tbody>
</table>
<br />
<br />
<br />
<br />
<br />
<br />
</body>
</html>