HTML

floatylsoverflow.html

Jan 30th, 2018
325
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.       overflow: auto;
  13.       width: 100%;  
  14. }
  15.  
  16. h1 {   background-color: #658B42;
  17.        padding: 10px;  
  18.        color: #E1DB5F;
  19. }
  20. p {    font-family: Arial, sans-serif;
  21. }
  22. .float {float: left;
  23.         margin-right: 10px;
  24.         border: 3px ridge #000000;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <h1>Yellow Lady Slipper</h1>
  30. <div>
  31. <img class="float" src="yls.jpg" alt="Yellow Lady Slipper" height="100" width="100">
  32. <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>
  33. </div>
  34. <h2>Be Green When Enjoying Wildflowers</h2>
  35. <p>Enjoy wild plants in their native surroundings. Protect their environment in all possible ways &mdash; support organizations dedicated to preserving their habitat. </p>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment