HTML

floatylsscroll.html

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