Advertisement
Guest User

Untitled

a guest
Aug 28th, 2014
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. <head>
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>2 Column CSS Layout</title>
  6. <style type="text/css">
  7. body {
  8. margin:20px;
  9. font-family:"Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif;
  10. background-color:#555
  11. }
  12.  
  13. div {
  14. text-align:center
  15. }
  16.  
  17. #page {
  18. background-color:#fff;
  19. margin:0 auto;
  20. text-align:left;
  21. width:755px;
  22. padding:0 10px
  23. }
  24.  
  25. #header {
  26. border-bottom:0px solid #000;
  27. height:30px;
  28. line-height:30px
  29. }
  30.  
  31. /* Begin Navigation Bar Styling */
  32. #nav {
  33. text-align:center;
  34. line-height: 30px;
  35. }
  36.  
  37. #nav ul {
  38. text-align:center;
  39. font-size:11px;
  40. width:100%;
  41. margin:0;
  42. padding:0;
  43. display:inline-block;
  44. list-style:none;
  45. background-color:#f2f2f2;
  46. border-bottom:1px solid #ccc;
  47. border-top:1px solid #ccc
  48. }
  49.  
  50. #nav li {
  51. margin:auto;
  52. display:inline-block
  53. }
  54.  
  55. #nav li a {
  56. display:block;
  57. padding:8px 15px;
  58. text-decoration:none;
  59. font-weight:700;
  60. color:#069;
  61. border-right:1px solid #ccc
  62. }
  63.  
  64. #nav li a:hover {
  65. color:#c00;
  66. background-color:#fff
  67. }
  68.  
  69. /* End navigation bar styling. */
  70.  
  71. #content {
  72. height: 200px;
  73. width:100%;
  74. display: table;
  75. background:none repeat scroll 0 0 none;
  76. }
  77.  
  78. #content p {
  79. display: table-cell;
  80. vertical-align: middle;
  81. }
  82.  
  83. #footer {
  84. height:30px;
  85. line-height:30px;
  86. border-top: 1px solid #000;
  87. font-size:9pt
  88. }
  89.  
  90. #footer p {
  91. float: right;
  92. }
  93.  
  94. .clear {
  95. clear: both;
  96. }
  97.  
  98.  
  99.  
  100. </style>
  101. </head>
  102.  
  103. <body>
  104. <div id="page">
  105. <div id="header">
  106. <div style="float: left;">
  107. Please Login
  108. </div>
  109. </div>
  110.  
  111.  
  112. <div id="content">
  113. <p>
  114. <form action="" method="post">
  115. <label for="un">Username</label>
  116. <input type="text" id="un" placeholder="username" /><br/>
  117. <label for="pw">Password</label>
  118. <input type="password" id="pw" placeholder="password" /><br/>
  119. <input type="submit" value="Login"/>
  120. </form>
  121. </p>
  122. </div>
  123.  
  124. <div id="footer">
  125. <div style="float: right;"> copyright 2014 </div>
  126. </div>
  127. </div>
  128. </body>
  129. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement