HTML help with anchor tags?

Elmo

New member
what is the required HTML to create textual hyperlinks between two documents named page1.html and index.html
also how would i Follow the same process to provide a textual link to an absolute URL.
both of the documents are the same the html is below where would i add the extra code and what will need to be added



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">

<html>
<head>

<title><h1>Creating HTML using Notepad</title></h1>

</head>

<body>
<p>Hello <b>world! <p></b>
<p><h2>This task is part of the tutorial for week 5 of MU130<p></h2>
</body>

</html>
 
Back
Top