Computer Science, asked by harjotsahni321, 1 year ago

Please tell me how to center hyperlinked text in html of anchor element. I am trying but the text is not coming in between.

Answers

Answered by Brainlyshchay
0

Q) Please tell me how to center hyperlinked text in html of anchor element ? I am trying but the text is not coming in between.

Ans)Hey buddy, check this code and run it as it has some important information......

<!DOCTYPE html>

<html>

<head>

 <title>How to add a hyperlink in the center of HTML | nishchay</title>

 <style>

   body {

     font-family: Arial;

   }

 </style>

</head>

<body>

 <a href="#">This is your hyperlink !</a>

 <br><br>

 <center>

   <a href="#" class="centered">This is my hyperlink !</a>

   <br>

   <h5>A hyperlink cannot be brought to the middle using Simple CSS it will need Bootstrap 4. So to bring it in the middle we have only one option that is center tag. And it will not come in the center using anchor element</h5>

   <br>

   <h2>Hope this helps you ! Please mark as brianliest :)</h2>

 </center>

</body>

</html>

This code is available on :

https://codepen.io/Nishchay004/pen/OJJwoEZ

Attachments:
Similar questions