Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Exercise</title>
  5.  
  6. <style type="text/css">
  7. .myHeader{
  8. background: lightgrey;
  9. height: 75px;
  10. }
  11.  
  12. .textInsideHeader{
  13. float:left;
  14. display: inline;
  15. padding-left: 15px;
  16. color:blue;
  17. }
  18.  
  19. .myFooter{
  20. border: 2px solid blue;
  21. background: lightgrey;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div class="myHeader">
  27. <h1 class="textInsideHeader">Photo here</h1>
  28. <h2 class="textInsideHeader">Site Name</h2>
  29. <h2 class="textInsideHeader">Home Page</h2>
  30. </div>
  31. <br>
  32. <div class="myFooter">
  33. <p> &copy Copyright <a href="#">YourSite</a>
  34. | <a href="#">Terms of Use</a>
  35. | <a href="#">Privacy</a></p>
  36. </div>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement