Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <meta charset="UTF-8">
  3. <html>
  4. <body>
  5. <head>
  6. <title>Jankis</title>
  7. <style>
  8. body *{
  9. text-align:center;
  10. float:left;
  11. font-size:25px;
  12. }
  13. body{
  14. width:1340px;
  15. }
  16. .header, .footer{
  17. width:1340px;
  18. height:150px;
  19. background-color:gray;
  20. line-height:150px;
  21. }
  22. .nav, .aside{
  23. width:270px;
  24. background-color:blue;
  25. height:400px;
  26. line-height:400px;
  27. border-top:0;
  28. border-bottom:0;
  29. }
  30. .middle{
  31. width:800px;
  32. height:400px;
  33. border:0;
  34. background-color:red;
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <div class='header'><a href="jankis.html"><img src="foto.jpg" style="width:1340px;height:150px;"></a></div>
  40. <div class='nav'>nav</div>
  41. <div class='middle'>
  42. section<br>
  43. header<br>
  44. article<br>
  45. footer
  46. </div>
  47. <div class='aside'>aside</div>
  48. <div class='footer'>footer</div>
  49.  
  50. </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement