-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (79 loc) · 2.22 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
<html>
<head>
<!-- 1. Tag HTML yang digunakan untuk Membuat judul halaman web-->
<title>Website Noval Go Coding </title>
</head>
<body>
<!-- Text Paragraf -->
<p><b>This is my first Website </b></p>
<!-- Tag Html 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>
<!-- Text Formating Bold-->
<b> Hello World</b>
</br> <!--BR untuk Enter-->
<!-- Text Formating Italic-->
<i> Hello world</i>
</br>
<!--Text Formating Underline-->
<u> Hello World</u>
</br> <!--br untuk Enter -->
<!--Menebalkan text-->
<em>Emphasized text</em>
</br>
<!-- Menebalkan / menegaskan sebuah text -->
<mark> Marked Text</mark>
</br>
<!-- Menandai text yang penting (stabilo) -->
<small> Smaller text</small>
<br/>
<!--Text menjadi kecil / lebih rendah -->
<del> Deleted text </del>
<br/> <!--br untuk enter -->
<!-- Mencoret sebuah text-->
<ins> Inserted text </ins>
<br/>
<!--Garis sebuah text seperti underline-->
4<sup> 2 </sup>
</br>
<!--Membuat pangkat diatas-->
3<sub> 2 </sub>
</br>
<!-- Membuat pangkat dibawah -->
</br>
</br>
<!-- Table Data -->
<Table border="6">
<thead>
<tr>
<th> No </th>
<th> Name </th>
<th> Classroom </th>
<th> Address</th>
</tr>
</thead>
<tbody>
<tr>
<td> 1 </td>
<td> Gussion </td>
<td> 08TPLP008 </td>
<td> Jl. Elang Raya Pondok Petir, Bojongsari, Depok</td>
</tr>
<tr>
<td> 2 </td>
<td> Lancelot </td>
<td> 08TPLP010 </td>
<td> Jl. Reni Jaya, tanggerang selatan </td>
</tr>
</tbody>
</Table>
<!--https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/button-->
<!-- Diatas adalah contoh Link Buat Form-->
</br>
</br>
</body>
</html>