welcomewiki has just posted in the HTML Forum forum of Wiki Newforum under the title of HTML Introduction.
This thread is located at http://www.wikinewforum.com/showthread.php?t=5771
Here is the message that has just been posted:
***************
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph</p>
</body>
</html>
*Example Explained*
* The text between <html> and </html> describes the web page
* The text between <body> and </body> is the visible page content
* The text between <h1> and </h1> is displayed as a heading
* The text between <p> and </p> is displayed as a paragraph
***************