Home > Net >  in a html how to add different type of hyperlink using internal CSS have added many hyperlink's
in a html how to add different type of hyperlink using internal CSS have added many hyperlink's

Time:09-11

so, in an html I have added many hyperlinks 1.the first one I want it to be a normal one 2.the second one I want it to change into a different colour when a mouse howers over it. 3.the third one I want it to be a button style hyperlink.

CodePudding user response:

You can use classes to style hyperlinks. Always use pseudo classes to style hyperlinks. Remember LVHA (Link, Visited, Hover, Active).

a:link - a normal, unvisited link.

a:visited - a link the user has visited.

a:hover - a link when the user mouses over it.

a:active - a link the moment it is clicked.

https://developer.mozilla.org/en-US/docs/Learn/CSS/Styling_text/Styling_links

.link {
    display: inline-block;
    cursor: pointer;
 }

.links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.link1 {
    text-decoration: underline;
}

.link2:hover {
    color: red;
}

.link3 {

    background: yellow;
    border-radius: 20px;
    padding: 10px;
}


.link3:hover {

    background: red;
    
}
<div >
    <a >Hyperlink1</a>
    <a >Hyperlink2</a>
    <a >Hyperlink3</a>
</div>

CodePudding user response:

  • CSS has .class:hover syntax to make the color change when the mouse hover.

    <head>
      <meta charset="UTF-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>Document</title>
    
      <style>
        /* first hyperlink: normal one  */
        .firstHyperLink {
        }
    
        /* second one change color when mouse hover  */
        .secondHyperLink:hover {
          color: cornflowerblue;
        }
    
        /* third one: button style  */
        .thirdHyperLink {
          background-color: cornflowerblue;
          padding: 12px;
        }
      </style>
    </head>
    <body>
      <a  href="">First Hyperlink</a>
      <a  href="">Second Hyperlink</a>
      <a  href="">Third Hyperlink</a>
    </body>
    
  •  Tags:  
  • html
  • Related