TTL
0
Q:

link in html

<a href="https://www.google.com/">Link to google</a>
4
<!-- this is a link tag -->

<link rel="" href="">
<!-- href is the location of your external ressource 
	
list of rel used with a link tag (popular) : 
	- stylesheet (css)
	- alternate
	- author
	- external 
	- incon
	- index 
-->
4
<a href="https://example.com">Link text goes here</a>
1
<a href="./Your/link/to/the/page">Your text</a>
1
<a href="https://example.in">Click me</a>
0
<!DOCTYPE html>
<html>

   <head>
      <title>HTML link Tag</title>
      <link rel = "stylesheet" href = "stylenew.css">
   </head>

   <body>
      <div id = "contentinfo">
         <p>Welcome to our website. We provide tutorials on various subjects.</p>
      </div>
   </body>

</html>
1

New to Communities?

Join the community