TUGAS 3 MEMBUAT HTML TABLE
1.membuat bendera merah putih dengan html table A.coding <html> <head> <title>bendera indonesia</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> B.hasilnya 2 membuat tabel berwarna dan memakai colspan dan rowspan A.codingnya <!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">...