HTML Tags used to create links
HTML Tags used to create links
Now here we describe those tags which are used to create links.
1. <a> :- <a> tag is used to create link or hyperlink from one page to another.In <a> href tag represents the link destinations.
2. <link> :- <link> tag defines link between any documents or other external resources. Link tag also used to link external style sheets and external scripts sheets.
Lets' Example and enjoy the output:-
<html>
<head>
<title>Web Tips Top</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<a href="https://www.abcd.com">Hyper Text Mark up Language</a>
<nav>
<a href="cars.html">Cars</a>
<a href="buses.html">Buses</a>
<a href="bicycles.html">Bicycles</a>
<a href="trucks.html">Trucks</a>
</nav>
</body>
</html>
Now here we describe those tags which are used to create links.
1. <a> :- <a> tag is used to create link or hyperlink from one page to another.In <a> href tag represents the link destinations.
2. <link> :- <link> tag defines link between any documents or other external resources. Link tag also used to link external style sheets and external scripts sheets.
Lets' Example and enjoy the output:-
<html>
<head>
<title>Web Tips Top</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<a href="https://www.abcd.com">Hyper Text Mark up Language</a>
<nav>
<a href="cars.html">Cars</a>
<a href="buses.html">Buses</a>
<a href="bicycles.html">Bicycles</a>
<a href="trucks.html">Trucks</a>
</nav>
</body>
</html>
Comments
Post a Comment