forked from kokonior/HTML-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaldi21-table
47 lines (46 loc) · 1.17 KB
/
maldi21-table
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
<html>
<head>
<title>
Tabel
</title>
<!--External CSS-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="style.css" rel="stylesheet">
</head>
<body>
<style>
h3 {
background-color: coral;
}
</style>
<table>
<tr>
<td>Bulan</td>
<td>Duwid</td>
</tr>
<tr>
<td>Januari</td>
<td>Rp. 50.000</td>
</tr>
<tr>
<td>Pebruari</td>
<td>Rp. 50.000</td>
</tr>
</table>
<h3>Name</h3>
<ul>
<li>Udin</li>
<li>Paijo</li>
<li>Bambang</li>
</ul>
<ol>
<li>Mario</li>
<li>Susi</li>
<ul>
<li>Udin</li>
<li>Paijo</li>
<li>Bambang</li>
</ul>
</ol>
</body>
</html>