Advertisement
Guest User

Example Code

a guest
Oct 17th, 2013
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.11 KB | None | 0 0
  1. <html>
  2.     <head>
  3.     <title>EVE Online Fleet Composition Application</title>
  4. <style type="text/css">
  5. .container {
  6.     padding: 10px;
  7.     width: 960px;
  8.     margin-right: auto;
  9.     margin-left: auto;
  10. }
  11. .header {
  12.     width: auto;
  13.     padding: 10px;
  14. }
  15. .footer {
  16.     width: auto;
  17.     padding: 10px;
  18. }
  19. .left_side_content {
  20.     float: left;
  21.     width: 220px;
  22.     padding: 10px;
  23. }
  24. .content {
  25.     padding: 10px;
  26.     float: right;
  27.     width: 700px;
  28. }
  29. </style>
  30.     </head>
  31.     <body>
  32.         <div class="container">
  33.             <div class="header"><img src="images/header.jpg" width="920" height="120"></div>
  34.             <div class="left_side_content">
  35.                 <p>This is where my side bar content and links will go!</p>
  36.             </div>
  37.             <div class="content">
  38.                 <h1>Title Goes Here.</h1>
  39.                 <p>This is where my main content and links will go! Lets see just how far it will spread tho ontent and links will go! Lets see just how far it will spread tho </p>
  40.             </div>
  41.             <div class="footer">
  42.                 <p>This is my footer!</p>
  43.             </div>
  44.         </div>
  45.     </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement