My First Webpage
The World Wide Web is such that it gives the everyday user the
power to publish anything to a global audience. More than ever,
"The audience is
listening".
For your first webpage, we have provided you with some sample code
that you can use and modify freely. If you want to know what the
following HTML code means, please consult our HTML
Primer page.
<!--- BEGIN SAMPLE PAGE CODE --->
<!--- REPLACE USERNAME@DOMAIN WITH APPROPRIATE VALUES --->
<HTML>
<HEAD>
<TITLE>My First Webpage!</TITLE>
</HEAD>
<BODY>
<IMG src=http://support./images/myhomepage.gif>
<P>
Welcome to my first webpage. There isn't much here now, but just
wait! There will be more coming.
<hr>
You can reach me via e-mail at
<a href=mailto:USERNAME@DOMAIN>
USERNAME@DOMAIN
</A>
</BODY>
</HTML>
<!--- END SAMPLE PAGE CODE --->
To use the above code, simply copy and paste it in Notepad (or
any other text editor) and save it as index.html (as a plain
text file). To upload the file, consult our Publishing
your page on the web page.
|