Page 58 - Plus V4 with Adobe class 8
P. 58
For example:
<A HREF = "About.html" target="_blank"> About Us </A>
The preceding code will create a link with the name About Us. When we click on the About Us link, the
About.html web page will open in a blank tab or window.
First page of a website, also known as Home page contains various links of other web pages. Let us
take an example of a website of the ABC Public School in which we are using external linking. The Home
page of the website is as shown:
Preceding web page contains six hyperlinks Admissions, Events, Sports, Activities, About Us and Contact
Us which are created by using the <A> tag.
The code to create the Home.html web page is as follows:
<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE> Home Page </TITLE>
<STYLE>
body{background-color:#EEFFEE; color:red;}
hr{background-color:red; height:2px}
h3{color:red;text-align:center;}
p{font-size:20px}
</STYLE>
</HEAD>
<BODY>
<H1> ABC Public School </H1>
<HR COLOR="red">
<H3> Welcome to ABC Public School </H3>
<P>
<BR> <A HREF="Admissions.html"> Admissions </A>
56 Plus (Ver. 4.0)-VIII

