Answers for "link on html"

37

html link

<a href="url">link text</a>
Posted by: Guest on February-16-2020
15

html link

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

how to add a link to an image in html

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Image as link</title>
   </head>
   <body>
      The following image works as a link:<br>
      <a href="https://www.qries.com/">
         <img alt="Qries" src="https://www.qries.com/images/banner_logo.png"
         width=150" height="70">
      </a>
   </body>
</html>
Posted by: Guest on November-23-2019
9

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