Showing posts with label make link. Show all posts
Showing posts with label make link. Show all posts

Wednesday, 12 November 2014

How to make link in Html

Structure of the Problem Requirements 

In this Program we can tell you that how to make a link in html. Multiple links you found on every web page. HTML links are called hyper links. and the hyper link is an element, text or an image to be link with any other site. For that purpose we use simply "href" key word for this. 
<a href="index.html"> Home</a "a" is use for tag and href mean reference of hyper link or another web link.here is the code for better understanding. 


SOURCE CODE 



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title> How to make link in Html </title>
 
</head>
<body class="bod">

 <div id="menu">
 <ul>

   
  <li><a href="index.html"> Home</a></li>
  <li><a href="page3.html"> Introduction</a></li>
  <li><a href="page2.html">Early Years</a></li>


   </ul>
 </div>
</body>
</html>


                     OUTPUT OF THE CODE
Html links
Html Links