1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <html>
- <head>
- <title>This is my first web page</title>
- </head>
- <body>
- <a
- href="index.html">
- Home
- </a>
-
- <a
- href="aboutme.html">
- About me
- </a>
-
- <a
- href="contact.html">
- Contact me
- </a>
- <hr></hr>
- <h1>This is my first web page</h1>
- <h2>
- This is the sub-title.
- </h2>
- <p>
- the first paragraph
- </p>
- <p>
- the second paragraph
- </p>
- </body>
- </html>
|