How to Make Link in HTML

Links are found on every web page of internet. In HTML href attribute specifies the destination address (http://www.pprogramming.com/html/) of the link.

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 Program 

Html links
Html Links

Share on Google Plus

About Asad

Asad Niazi is Software Engineer , Programmer, Web Developer and a young mentor of BloggersTown and PProgramming. Asad Love to writes about Technology, Programming, Blogging and make money online.
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment