Katiella
0
Q:

link to external site html

<a href="url">link text</a>
21
<a href="link.html"> text link </a> <!-- link to html -->
<a href="google.com" URL> Google </a> <!-- link to site -->
<a href="link.html"><button> Link </button></a> <!-- Button link -->
7
<a href="https://www.w3schools.com/html/">Visit our HTML tutorial</a>
1
<a href="https://examplesite.com" target="_blank" rel="noopener noreferrer">
  Example Link
</a>
5
<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="https://www.example.com">This is a link</a>
1
<a class="class" href="link" id="id">Text</a>
0

New to Communities?

Join the community