href tag code example

Example 1: 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>

Example 2: html link

<a href="https://www.google.com/">Link to google</a>

Example 3: html a href

<a href="http://example.com" >Link text</a>

Example 4: how to display a link in html

<a href="https://www.google.com/"> google </a>

Example 5: html link tag

<head>
  <link rel="stylesheet" type="text/css" href="theme.css">
</head>

Example 6: a href to other site

<a href="https://examplesite.com" target="_blank" rel="noopener noreferrer">
  Example Link
</a>

Tags:

Css Example