Answers for "href tag"

5

buton html href

<!-- if you are on Window : --> 
<button onclick="window.location.href='page2.html'">
  Button
</button>

<!-- if you are on linux or macOS : -->
<button onclick="location.href='page2.html'">
  Button
</button>
Posted by: Guest on April-25-2020
15

html link

<a href="https://www.google.com/">Link to google</a>
Posted by: Guest on September-29-2020
0

email anchor tag

<a href="mailto:[email protected]">Email</a>
Posted by: Guest on October-08-2020
19

html a href

<a href="http://example.com" >Link text</a>
Posted by: Guest on May-16-2020
1

how to display a link in html

<a href="https://www.google.com/"> google </a>
Posted by: Guest on August-20-2020
10

html link tag

<head>
  <link rel="stylesheet" type="text/css" href="theme.css">
</head>
Posted by: Guest on March-06-2020

Browse Popular Code Answers by Language