Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>index</title>
  5. <link href="styles.css" rel="stylesheet" type="text/css" />
  6. </head>
  7. <body>
  8. <div id="container">
  9. <div id="header"></div>
  10. <div id="nav"><a href="home.html">Home</a> <a href="the_band.html">The Band</a>
  11. <a href="News.html">News</a> <a href="gallery.html">Gallery</a>
  12. <a href="contact.html">Contact</a></div> <div id="content"></div>
  13. <iframe id="frame"></iframe>
  14. <div id="footer"></div>
  15. </div>
  16. </body>
  17. </html>
  18.  
  19. div#container {
  20. height: 100%;
  21. width: 100%;
  22. }
  23. div#header {
  24. top: 0px;
  25. width: 100%;
  26. height: 80px;
  27. position: fixed;
  28. background-color: transparent;
  29. text-align: center;
  30. }
  31. div#nav {
  32. font-family: MgSouvenirLight;
  33. font-size: 18pt;
  34. color: #FF0;
  35. top: 120px;
  36. width: 100%;
  37. height: 40px;
  38. position: fixed;
  39. text-decoration: none;
  40. font-weight: bolder;
  41. font-variant: normal;
  42. }
  43. div#footer {
  44. font-family: Arial, Helvetica, sans-serif;
  45. font-size: 9px;
  46. bottom: 0px;
  47. position: fixed;
  48. height: 30px;
  49. width: 100%;
  50. text-align: center;
  51. color: #fff;
  52. }
  53. #frame {
  54. position: absolute;
  55. top: 200px;
  56. bottom: 40px;
  57. width: 800px;
  58. border: none;
  59. left: 120px;
  60. height: auto;
  61. }
  62. a:link {
  63. font-family: MgSouvenirLight;
  64. font-size: 18pt;
  65. color: #FF0;
  66. }
  67. a:visited {
  68. font-family: MgSouvenirLight;
  69. font-size: 18pt;
  70. color: #FF0;
  71. }
  72. a:hover {
  73. font-family: MgSouvenirLight;
  74. font-size: 18pt;
  75. font-style: italic;
  76. color: #FC0;
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement