Tugas 3: Membuat HTML table
 
Sumber:  http://miftah-pelajarpedulicovid19.blogspot.com   Tugas 1        #coding <!DOCTYPE html> <html> <head> <title>Risma</title> </head> <body> <center> <table border="1" cellpadding="60" cellspacing="1" style="width:100%"> <tr style="background-color:red">   <td colspan="2"></td>  </tr>  <tr style="bgcolor:white">    <td colspan="2"></td> </tr> </table> <h1>AKU CINTA INDONESIA</h1> </center> </body> </html>        #tampilan      Tugas 2            #coding  <!DOCTYPE html> <html> <head> <title>tabel warna</title> </head> <body> <center> <table border="1" cellpadding="60" cellspacing="1"> <tr>   <td colspan="2" style="background-color:red"></td>   ...
 
