This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title> Belajar Tabel HTML</title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<h3> Tabel Nilai Mahasiswa Informatika 2</h3> | |
<table border="1" cellspacing="0" cellpadding="6"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h4> Tabel tanpa rules</h4> | |
<table rules="none"> | |
<tr> | |
<td> Baris 1 Kolom 1</td> | |
<td> Baris 1 Kolom 2</td> | |
</tr> | |
<tr> | |
<td> Baris 2 Kolom 1</td> | |
<td> Baris 2 Kolom 2</td> | |
</tr> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h4> Tabel tanpa cellpadding</h4> | |
<table border="1" cellpadding="0"> | |
<tr> | |
<td> Baris 1 Kolom 1</td> | |
<td> Baris 1 Kolom 2</td> | |
</tr> | |
<tr> | |
<td> Baris 2 Kolom 1</td> | |
<td> Baris 2 Kolom 2</td> | |
</tr> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h4> Tabel tanpa cellspacing</h4> | |
<table border="1" cellspacing="0"> | |
<tr> | |
<td> Baris 1 Kolom 1</td> | |
<td> Baris 1 Kolom 2</td> | |
</tr> | |
<tr> | |
<td> Baris 2 Kolom 1</td> | |
<td> Baris 2 Kolom 2</td> | |
</tr> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table border="1"> | |
<tr> | |
<td> Baris 1 Kolom 1</td> | |
<td> Baris 1 Kolom 2</td> | |
</tr> | |
<tr> | |
<td> Baris 2 Kolom 1</td> | |
<td> Baris 2 Kolom 2</td> | |
</tr> | |
</table> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title> Belajar Tabel HTML</title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<table> | |
<tr> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table> | |
<tr> | |
<td> data di sini ..</td> | |
</tr> | |
</table> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var biodata = { | |
Nama : " Yudi Arif Kurniawan ", | |
Hobi : " Berenang, Volly, Goes", | |
Email : "yudiakxgwe@gmail.com", | |
Situs : " ngodeinweb.com, bangresi.xyz", | |
}; |