How to put Lines Above And Below in Text Link?
To know how to put the Text links with lines above and below you have to do is just simply add the A:hover in the CSS code. You can easily do it by providing the CSS code in your scripts. What you have to do is to just add the CSS code to your script in the Head section.
<style type=”text/css”>
<!–
A:hover {text-decoration: overline underline}
–>
</style>
By adding the CSS code you can put Lines Above And Below in Text Links.
Say for Eg:
<html>
<head>
<title>Text Links With Lines Above And Below</title>
<style type=”text/css”>
<!–
A:hover {text-decoration: overline underline}
–>
</style>
</head>
<body>
<center>
<a href=”Url here”><b>Text Links With Lines Above And Below</b></a></center>
</body>
</html>
displays you the link “Text Links With Lines Above And Below” with the Lines Above And Below in Text Link as shown below
Text Links With Lines Above And Below