HTML

float.html

Jan 30th, 2018
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>CSS</title>
  5. <meta charset="utf-8">
  6. <style>
  7. h1 {   background-color:#A8C682;
  8.        padding: 5px;   
  9.        color: #000000;
  10. }
  11. p {    font-family: Arial,sans-serif;      
  12. }
  13. #yls {float: right;
  14.       margin: 0 0 5px 5px;
  15.       border: 1px solid #000000;
  16. }
  17.  
  18. </style>
  19. </head>
  20. <body>
  21. <h1>Wildflowers</h1>
  22. <img id="yls" src="yls.jpg" alt="Yellow Lady Slipper" height="100" width="100">
  23. <p>The heading and paragraph follow normal flow. The Yellow Lady Slipper pictured on the right is a wildflower. It grows in wooded areas and blooms in June each year. The Yellow Lady Slipper is a member of the orchid family.</p>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment