Advertisement
Guest User

Jistooo

a guest
Sep 17th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.29 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. .border{
  5.         margin: 80px auto;
  6.         width: 400px;
  7.         padding: 90px;
  8.         border: 5px solid orange;
  9.         background: skyblue;
  10.     }
  11.     .nama{
  12.         font-size: 20;
  13.         color: pink;
  14.     }
  15.     .kelas{
  16.         font-size: 20;
  17.         color: cyan;
  18.         font-weight: bold;
  19.     }
  20.     .jurusan{
  21.         font-size: 20;
  22.         color: purple;
  23.     }
  24.     .alamat{
  25.         font-size: 20;
  26.         color: salmon;
  27.     }
  28.     .tanggal{
  29.         font-size: 30px;
  30.         color: blue;
  31.     }
  32.      img {
  33.         width: 250px;
  34.         height: 250px;
  35.         border-radius: 50%;
  36.     }
  37. </style>
  38. </head>
  39. <body>
  40. <div class="border">
  41.         <img src="senior.jpg"> <!--width="280" height="260"-->
  42.         <div class="nama">
  43.             <p>Nama: Justin Anditiaman</p>
  44.         <div class="kelas">
  45.             <p>Kelas: X RPL 2</p>
  46.             <div class="jurusan">
  47.                 <p>Jurusan: RPL </p>
  48.                 <div class="alamat">
  49.                     <p>Alamat: Osaka, Hotel Ayana</p>
  50.                     <div class="tanggal">
  51.                       <p>Tanggal Lahir: 27-03-2003</p><!--border-radius: 50%;-->
  52.                     </div>
  53.                 </div>
  54.             </div>
  55.         </div>
  56.         </div>  
  57.     </div>
  58. </body>
  59. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement