NEP CMA

PART -A

PROGRAM 1 PROGRAM 2 PROGRAM 3 PROGRAM 4 PROGRAM 5 PROGRAM 6 PROGRAM 7 PROGRAM 8

PART-B

PROGRAM B1 PROGRAM B2 PROGRAM B3 PROGRAM B4 PROGRAM B5 PROGRAM B6 PROGRAM B7 PROGRAM B8 . . .

1

1.Develop and demonstrate a HTML document that illustrates
a) Image as a background
b) Hyperlink using an image
c) Hyperlink with another web page (A, Base, Href)
d) Link to email address, FTP Websites

 
  
 
     
   <html>
<body background="image1.jpg">

<a href="#">
<h4>Hyperlink using an image </h4>
<img src="image2.jpg" alt="HTML tutorial" style="width:420px;height:420px;">
</a> 


<h4>c) Hyperlink with another web page (A, Base, Href) </h4>
<!--

<base href="https://www.w3schools.com/" target="_blank">

-->
<base href="" target="_blank">
 
<a href="tags/tag_base.asp">HTML base Tag</a><br>

d) Link to email address, FTP

<a href = "mailto: abc@example.com">Send Email</a> <br>

<a href="ftp://pete@ftp.someserver.com/program">FTP SERVER </a>

</body>
</html>