HTML program to develop two web-pages that connect with each other. Home-page which connects to second page.

Page 1

page 2


NOTE: Make two HTML file
1. Make the 1st HTML file name as
HTML_1_PG2.html
2. Make the 2nd HTML file name as 
HTML_2_PG2.html

HTML (Page 1)
<HTML>
<HEAD>
<TITLE>Text Linking</TITLE>
</HEAD>
<BODY bgcolor="#00FFFF">
<marquee> We are learning <i> Text Linking </i> </marquee>
<br>
<br>
When we are directed to a new webpage on clicking certain text, it is called as
TEXT LINKING. <BR>For Image Linking page
<a href=HTML_2_PG2.html> Click Here </a>
</BODY>
</HTML>
HTML (page 2)
<html>
<head>
<title>Image Linking</title>
</head>
<body bgcolor=Yellow>
<marquee> We are Learning Image Linking Here! </marquee>
<br><br><br>When we click on an image and it takes us to a new webpage, it is called as
Image linking.
<br>Go to separate page to experience text linking <i> Click on below Image </i>
<br>
<br>
<br>
<a href=HTML_2_PG1.html><IMG SRC=Tulips.jpg height=250 width=300 title="Click for new
page"></a>
</body>
<html>

Post a Comment

0 Comments