XHTML and CSS Tutorial - 6 - Adding Links to our Webpage

<!doctype html>

<html>
<head>
<title> This is the Title </title>
</head>

<body>
<a href="http://google.com">This will be a link</a>
</body>

</html>

<!doctype html>

<html>
<head>
<title> Second Page </title>
</head>

<body>
This is the second page!
</body>

</html>

<!doctype html>

<html>
<head>
<title> This is the Title </title>
</head>

<body>
<a href="second.html">This will link to the second page</a>
</body>

</html>

Comments