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.

 <body>
  <a>Learn to Code</a>
  </body>

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

 <body>
  <a href="https://getmimo.com">Learn to Code</a>
 </body>
TRY IT ON THE APP