Format Tampilan Multimedia & Tabel Inilah beberapa Contoh yang saya akan tunjukan kepada kalian 1. Embed Image CSS 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 <!DOCTYPE html> <html> <head> <title> CSS pada Image </title> <style type="text/css" > img .mouse { margin-top : 10px ; float : left ; clear : both ; width : 200px ; height : 200px ; } img .wormy { margin-top : 5px ; float : right ; clear : both ; width : 200px ; height : 200px ; border : solid ; border-color : pink ; } img .koala { margin-top : 10px ; float : right ; clear : both ; width : 200px ; height : 200px ; } </style> </head> <body> <h1> Contoh embedded CSS pada Gambar </h1> <img class="mouse" src="gambarku/tikus.jpg" > <img class...