27 September 2016

How to Create Simple Table With HTML

Now, lets we see how to make table from the HTML Code:
How to Create Simple Table With HTML

<html>
<table border="1">
<tr>
<th>NIS</th>
<th>NAMA SISWA</th>
<th>KELAS</th>
<th>ALAMAT</th>
</tr>
<tr>
<td>1</td>
<td>Syarief</td>
<td>XI TKJ</td>
<td>Papua</td>
</tr>
<tr>
<td>2</td>
<td>Wahid</td>
<td>XI TKJ</td>
<td>Papua</td>
</tr>
<tr>
<td>3</td>
<td>Kahfi</td>
<td>XI TKJ</td>
<td>Papua</td>
</tr>
<tr>
<td>4</td>
<td>Abah</td>
<td>XI TKJ</td>
<td>Papua</td>
</tr>
</table>
</html>


if you want to make it into HTML Simulator lets go here
Share:

0 komentar:

Post a Comment

Blog Archive