HTML

index.html

Jan 30th, 2018
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.06 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Image Gallery</title>
  5. <meta charset="utf-8">
  6. <style>
  7. ul { list-style-type: none; }
  8. li { display: inline-block;
  9.      width: 225px;
  10.      padding-bottom: 10px;
  11.      margin: 10px;
  12.      background-color: #EAEAEA;
  13.      text-align: center;
  14.      font-style: italic;
  15.      font-family: Georgia, serif; }
  16. </style>
  17. </head>
  18. <body>
  19. <h1>Image Gallery</h1>
  20. <ul>
  21. <li>
  22.  <img src="photo1.jpg" alt="Golden Gate Bridge" width="225" height="168">
  23. Golden Gate Bridge
  24. </li>
  25. <li>
  26.  <img src="photo2.jpg" alt="Rocky Shoreline" width="225" height="168">
  27.  Rocky Shoreline
  28. </li>
  29. <li>
  30.  <img src="photo3.jpg" alt="Waves Crashing on the Shore" width="225" height="168">
  31.  Waves Crashing
  32. </li>
  33. <li>
  34.  <img src="photo4.jpg" alt="Ocean Sunset" width="225" height="168">
  35.  Ocean Sunset
  36. </li>
  37. <li>
  38.  <img src="photo5.jpg" alt="Waterfall on the Beach" width="225" height="168">
  39.  Waterfall on the Beach
  40. </li>
  41. <li>
  42.  <img src="photo6.jpg" alt="Fog Moving in from the Pacific" width="225" height="168">
  43.  Fog Moving In
  44. </li>
  45. </ul>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment