Home.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <link rel="icon" type="image/png" href="img/14.png" />
  2. <!DOCTYPE html>
  3. <html>
  4. <body background="img/wall.gif">
  5. <p><font face="verdana">
  6. <head>
  7. <style>
  8. header {
  9. background-color:black;
  10. color:white;
  11. text-align:center;
  12. padding:5px;
  13. }
  14. nav {
  15. line-height:30px;
  16. background-color:#eeeeee;
  17. height:300px;
  18. width:100px;
  19. float:left;
  20. padding:5px;
  21. }
  22. section {
  23. width:350px;
  24. float:left;
  25. padding:10px;
  26. }
  27. footer {
  28. background-color:black;
  29. color:white;
  30. clear:both;
  31. text-align:center;
  32. padding:5px;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <HEAD>
  38. <SCRIPT LANGUAGE="JavaScript">
  39. <!-- Begin
  40. var timerID = null;
  41. var timerRunning = false;
  42. function stopclock (){
  43. if(timerRunning)
  44. clearTimeout(timerID);
  45. timerRunning = false;
  46. }
  47. function showtime () {
  48. var now = new Date();
  49. var hours = now.getHours();
  50. var minutes = now.getMinutes();
  51. var seconds = now.getSeconds()
  52. var timeValue = "" + ((hours >12) ? hours -12 :hours)
  53. if (timeValue == "0") timeValue = 12;
  54. timeValue += ((minutes < 10) ? ":0" : ":") + minutes
  55. timeValue += ((seconds < 10) ? ":0" : ":") + seconds
  56. timeValue += (hours >= 12) ? " P.M." : " A.M."
  57. document.clock.face.value = timeValue;
  58. timerID = setTimeout("showtime()",1000);
  59. timerRunning = true;
  60. }
  61. function startclock() {
  62. stopclock();
  63. showtime();
  64. }
  65. // End -->
  66. </SCRIPT>
  67. <!-- STEP TWO: Add this onLoad event handler to the BODY tag -->
  68. <BODY onLoad="startclock()">
  69. <!-- STEP THREE: Copy this code into the BODY of your HTML document -->
  70. <CENTER>
  71. <FORM name="clock">
  72. <input type="text" name="face" size=13 value="">
  73. </FORM>
  74. </CENTER>
  75. <!-- Script Size: 1.45 KB -->
  76. <title>Welcome!</title>
  77. <header>
  78. <h1>Home</h1>
  79. <p>it's great to be different<P>
  80. </header>
  81. <nav>
  82. <P><a href="Batch.html">Batch</a>
  83. <P><a href="Index_Of_Website.html">Index</a>
  84. <P><a href="https://myspace.com/14jammar">MySpace</a>
  85. <br>
  86. <P><a href="http://pastebin.com/u/owlman">Pastebin</a>
  87. <P><a href="guestbook.html">Guestbook</a>
  88. <P><a href="banners.html">Banners</a>
  89. </nav>
  90. <section>
  91. <h1>Hello There!</h1>
  92. <P>Hi there, my name is Cass and I like to surf the World Wide Web!
  93. </p>
  94. <p>
  95. I'm only starting to learn HTML, however, I hope I will know how to
  96. properly use it soon
  97. </p>
  98. Feel free to have a look around, and when you're here why not sing my <a href="guestbook.html">guestbook?</P></a>
  99. <P>If you want, look at <a href="Notable_Pages.html">The Notable Pages</a>
  100. </section>
  101. <footer>
  102. <!DOCTYPE html>
  103. <html>
  104. <body>
  105. <font size="1"><tt>Est. 01/12/98
  106. <P><a href="http://www.evilnet.ch/"><img src="img/evilnet.gif"></a><a href="http://www.aliensonearth.com/area51/"><img src="img/geocities_area_51.gif"></a><a href="http://meikaideshou.neocities.org/"><a href="https://duckduckgo.com"><img src="img/ddg4.png" alt="DuckDuckGo" border="0" /> <a href="http://www.aol.com/"><img src="img/members-choice.gif"><a href="https://notepad-plus-plus.org/"><img src="img/made_w_n_ote_pad.gif"><a href="https://neocities.org/"><img src="img/neocities_button.gif"></a>
  107. <P>Copyright (c) 1998-Forever by <a href="About_Me.html"><font color="white">Cass Python</font></a>. All images, trademarks, and copyrights are property of their respective owners. I am not responsible for the content of external sites.</tt></font>
  108. </body>
  109. </html>
  110. </footer>
  111. </body>
  112. </html>