Friday, 19 April 2019

HTML Hyper Links Re-Directing One Website to Another Website




<!--create a web page to demonstrate hyperlinks in HTML-->
<html>
<head> 
<link rel="shortcut icon" href="google1.png"/>
</head>
<body>
<h1 id="top" >Welcome to HTML</h1>
<hr\>


<img src="contact.png"/ width="20" height="15"/> 
<a href="contact.html">contact us</a> <br/>

<img src="about.png"/ width="20" height="15"/> 
<a href="about.html">about us</a> <br/>
<hr\>

<img src="facebook.png"/ width="20" height="15"/> 
<a href="http://www.facebook.com">facebook</a> <br/>

<img src="twitter.png"/ width="20" height="15"/> 
<a href="http://www.Twitter.com">Twitter</a> <br/>
<hr\>

<img src="html5.png"/ width="20" height="15"/> 
<a href="#s1">HTML5</a><br/>

<img src="jquery.png"/ width="20" height="15"/> 
<a href="#s2">JQuery</a>
 <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
<br/><br/><br/><br/><br/><br/><br/>

<h3 id="s1">HTML5</h3>
<p>HTML5 is a latest version that provides new tags in order to developing web pages.
HTML5 is a latest version that provides new tags in order to developing web pages.
HTML5 is a latest version that provides new tags in order to developing web pages.
HTML5 is a latest version that provides new tags in order to developing web pages.</p>

<a href="#top">back to top</a>

<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>

<h3 id="s2">JQuery</h3>
<p>jquery is javascript based library that makes client side programming easy.
   jquery is javascript based library that makes client side programming easy.
   jquery is javascript based library that makes client side programming easy.
   jquery is javascript based library that makes client side programming easy.</p>
   
   <a href="#top">back to top</a>
   
</body>
</html>

No comments:

Post a Comment