HTML

floatylsclear2.html

Jan 30th, 2018
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.99 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>CSS Float</title>
  5. <meta charset="utf-8">
  6. <style>
  7. body {width: 500px;
  8.       background-color: #FFFFFF;
  9.       color: #000000;
  10. }
  11. div {background-color: #F3F1BF;
  12. }
  13. h1 {   background-color: #658B42;
  14.        padding: 10px;  
  15.        color: #e1db5f;
  16. }
  17. p {    font-family: Arial, sans-serif;
  18. }
  19. .float {float: left;
  20.         margin-right: 10px;
  21.         border: 3px ridge #000000;
  22. }
  23. .clearleft {clear:left; }
  24. </style>
  25. </head>
  26. <body>
  27. <h1>Yellow Lady Slipper</h1>
  28. <div>
  29. <img class="float" src="yls.jpg" alt="Yellow Lady Slipper" height="100" width="100">
  30. <p>The Yellow Lady Slipper grows in wooded areas and blooms in June each year. The flower is a member of the orchid family.</p>
  31. </div>
  32. <h2 class="clearleft">Be Green When Enjoying Wildflowers</h2>
  33. <p>Enjoy wild plants in their native surroundings. Protect their environment in all possible ways &mdash; support organizations dedicated to preserving their habitat. </p>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment