get it on google playCreated with Sketch.
HTML> Links

Links

To start creating a link, we add the text in between the <a> and </a> tags. This won't highlight the text yet.

<a> stands for "Anchor" tag.

<a>Learn to Code</a>

To link the text to a webpage, we add href="" along with a Uniform Resource Locator (URL). href is short for "hypertext reference".

<a href="https://mimo.org">Learn to Code</a>
TRY IT ON THE APP