0
Q:

html link

<a href="url">link text</a>
21
<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
<!-- How to link to a website? -->
<a href="url"> Some text... </a>


<!-- How to create a link to another file? -->
<a href="path to de file"> Some text... </a>


<!-- How to create a link to a subsection within the document? -->
<!-- Example: object to which we want to jump to: -->
<h1 id="some id"> Title </h1>
<!-- linked text: -->
<a href="#some id"> Some text... </a>


<!-- How to associate a link to an image? -->
<a href="url">
<img src="path to image" alt="" style="width:42px;height:42px;">
</a>
0
<a href="./Your/link/to/the/page">Your text</a>
1
<a href="https://example.in">Click me</a>
0

New to Communities?

Join the community