Advertisement
Guest User

css & html

a guest
Nov 10th, 2012
596
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.73 KB | None | 0 0
  1. body{
  2.     font-size: 12pt;
  3.     line-height: 1.75em;
  4.     font-family: Arial, sans-serif;
  5.     background: #030707 url('images/body.jpg');
  6.     color: #c0c1c1;
  7. }
  8.  
  9. #Header {
  10.     padding: 30px;
  11.     height: 60px;
  12.     width: 36%;
  13.     margin: 0px 0 0 500;
  14.     overflow: hidden;
  15.  
  16. }
  17.  
  18. #Content {
  19.     padding: 35px;
  20.     height: 800px;
  21.     width: 32%;
  22.     background: grey;
  23.     margin: 50px 0 0 529;
  24.     vertical-align:top;
  25.     border:1px solid red;
  26. }
  27.  
  28. #SideBar{
  29.     position: absolute;
  30.     padding: 35px;
  31.     height: 800px;
  32.     width: 7%;
  33.     background: grey;
  34.     margin: 50px 0 0 260;
  35.     vertical-align:top;
  36.     z-index:1;
  37.     border:1px solid red;
  38. }
  39.  
  40. p.PosFixed
  41. {
  42. position:relative;
  43. padding: 35px;
  44. margin: -60px 0 0 -50;
  45. z-index:2;
  46. }
  47.  
  48. #Footer{
  49.     padding: 30px;
  50.     height: 60px;
  51.     width: 37%;
  52.     margin: 0px 0 0 500;
  53. }
  54.  
  55. <html>
  56. <title>Informatica-sj</title>
  57.  <link REL="stylesheet" href="style.css" type="text/css">
  58.  
  59. </head>
  60. <body>
  61. <body>
  62. <div id="Header"><center><img src="images/Header.jpg" width="100%" height="120" alt=""></center></div>
  63.   <div id="SideBar">
  64.       <p class="PosFixed">
  65.   <a href="index.html" onmouseover="setOverImg('1','');" onmouseout="setOutImg('1','');" target="index.html"><img src="buttons/button1up.png" border="0" id="button1" vspace="1" hspace="1"></a><br>
  66. <a href="contact.html" onmouseover="setOverImg('2','');" onmouseout="setOutImg('2','');" target="contact.html"><img src="buttons/button2up.png" border="0" id="button2" vspace="1" hspace="1"></a><br>
  67. <a href="po1.html" onmouseover="setOverImg('3','');" onmouseout="setOutImg('3','');" target="po1.html"><img src="buttons/button3up.png" border="0" id="button3" vspace="1" hspace="1"></a><br>
  68. <a href="po2.html" onmouseover="setOverImg('4','');" onmouseout="setOutImg('4','');" target="underConstruction.html"><img src="buttons/button4up.png" border="0" id="button4" vspace="1" hspace="1"></a><br>
  69. <a href="po3.html" onmouseover="setOverImg('5','');" onmouseout="setOutImg('5','');" target="underConstruction.html"><img src="buttons/button5up.png" border="0" id="button5" vspace="1" hspace="1"></a><br>
  70. <a href="po4.html" onmouseover="setOverImg('6','');" onmouseout="setOutImg('6','');" target="underConstruction.html"><img src="buttons/button6up.png" border="0" id="button6" vspace="1" hspace="1"></a><br>
  71. <a href="po5.html" onmouseover="setOverImg('7','');" onmouseout="setOutImg('7','');" target="underConstruction.html"><img src="buttons/button7up.png" border="0" id="button7" vspace="1" hspace="1"></a><br>
  72. </p>
  73.   </div>
  74.  
  75.  <div id="Content">
  76.  <font face="28 Days Later" size="15" color="Black">
  77. Welkome,
  78. </font>
  79. <font face="FangSong" size="3" color="black">
  80.    Enter text here
  81.    </font>
  82.  </div>
  83.  
  84.  <div id="Footer">
  85.  <img src="images/Footer.jpg" width="100%" height="120" alt="">
  86.  </div>
  87.  
  88. </body>
  89. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement