Advertisement
vanhan11

Untitled

Aug 21st, 2019
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.89 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4.     <title>Alvan XI RPL2</title>
  5.     <style type="text/css">
  6.         img.mouse {
  7.             margin-top: 10px;
  8.             float: left;
  9.             clear: both;
  10.             width: 200px;
  11.             height: 200px;
  12.         }
  13.        
  14.         img.cat {
  15.             margin-top: 5px;
  16.             float: right;
  17.             clear: both;
  18.             width: 200px;
  19.             height: 200px;
  20.             border: solid;
  21.             border-color: pink;
  22.         }
  23.        
  24.         img.koala {
  25.             margin-top: 10px;
  26.             float: right;
  27.             clear: both;
  28.             width: 200px;
  29.             height: 200px;
  30.         }
  31.     </style>
  32. </head>
  33.  
  34. <body>
  35.     <h1>Contoh Embeded CSS pada gambar</h1>
  36.     <img class="mouse" src="gambar/tikus.jpg">
  37.     <img class="cat" src="gambar/kucing.jpg">
  38.     <img class="koala" src="gambar/koala.jpg">
  39. </body>
  40.  
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement