Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <title>Lesson 3 </title>
  6. <meta charset ="utf-8">
  7. <style>
  8. header {
  9. background-color:#ccffcc;
  10. text-align: center;
  11. line-height:30px;
  12. }
  13.  
  14. h1{line-height: 50px;}
  15.  
  16. article {
  17. background-color:#ccccff;
  18. width: 200px;
  19. height: 400px;
  20. float: left;
  21. }
  22.  
  23. aside {
  24. background-color:#ffcccc;
  25. width: 200px;
  26. height: 400px;
  27. float: right;
  28. }
  29.  
  30. div {
  31. width: 200px;
  32. height: 400px;
  33. background-color:#996633;
  34. float: left;
  35. clear: left;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <header>
  41. <h1>Lesson 3</h1>
  42. </header>
  43.  
  44. <article>
  45. </article>
  46.  
  47. <aside>
  48. </aside>
  49.  
  50. <div>
  51. </div>
  52.  
  53. </body>
  54.  
  55.  
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement