-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pertemuan 1</title>
</head>
<body>
</body>
<!--Kode dibawah ini untuk membuat heading-->
<h1>Hello, World!</h1>
<h2>Hello, World!</h2>
<h3>Hello, World!</h3>
<h4>Hello, World!</h4>
<h5>Hello, World!</h5>
<h6>Hello, World!</h6>
<!--<p-->
<p>Lorem ipsum, dolor sit amet consectetur
adipisicing elit. Earum fugiat nulla magnam
magni explicabo quam eaque? Laudantium
consectetur quisquam natus dolores a libero
voluptates delectus, voluptate earum et sed
eius.</p>
<!--Kode dibawah ini untuk membuat heading-->
<b>Teks tebal</b><br>
<strong>Ini juga teks tebal</strong><br>
<i>Teks miring</i><br>
<em>Ini juga teks miring</em><br>
<mark>Hilight Teks</mark>
<del>Teks coret</del>
<ins>Teks garis bawah</ins>
H<sub>2</sub>0<sub>2</sub><br>
2<sup>5</sup>
<a href="Halaman2.html">Ke Halaman 2</a>
<a href="https://www.google.com/" target="_blank
</body>
</html>