index.html 428 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <html>
  2. <head>
  3. <title>This is my first web page</title>
  4. </head>
  5. <body>
  6. <a
  7. href="index.html">
  8. Home
  9. </a>
  10. &nbsp;
  11. <a
  12. href="aboutme.html">
  13. About me
  14. </a>
  15. &nbsp;
  16. <a
  17. href="contact.html">
  18. Contact me
  19. </a>
  20. <hr></hr>
  21. <h1>This is my first web page</h1>
  22. <h2>
  23. This is the sub-title.
  24. </h2>
  25. <p>
  26. the first paragraph
  27. </p>
  28. <p>
  29. the second paragraph
  30. </p>
  31. </body>
  32. </html>