-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlat1.html
46 lines (45 loc) · 991 Bytes
/
lat1.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>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Struktur Dasar</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
h1{
color:red;
}
.paragraf{
color: aqua;
}
table,th,td{
border: 1px solid violet;
padding: 10px;
}
</style>
</head>
<body>
<h1>Hello World (ini judul)</h1>
<p class="paragraf">Selamat belajar web programming ^x^ (ini paragraf)</p>
<br>
<table>
<tr>
<th>No</th>
<th>Nama</th>
<th>Alamat</th>
</tr>
<tr>
<td>1</td>
<td>Kino</td>
<td rowspan="2">Palembang</td>
</tr>
<tr>
<td>2</td>
<td>Limo</td>
</tr>
<tr>
<td colspan="3">tamat</td>
</tr>
</table>
</body>
</html>