|
The automatically
generated homepage - a file named index.html
- contains your name and email address. In a web-browser window it looks
like this:
The HTML
code to produce the above homepage
looks like this:
|
<html>
<head>
<title>
<h3>The Home Page of Your Name </h3>
</title>
</head>
<body>
<h1>Welcome to my homepage!</h1>
I am associated with the <a href="http://www.arizona.edu"> University
of Arizona</a>.
<p> You can send email to me at <a href="mailto:your_NetID@email.Arizona.EDU">
your_Netid@email.Arizona.EDU</a>.
</body>
</html>
|
|