Search This Blog

CSS Text Decoration None Example

Text Decoration None Example :
<!DOCTYPE html>
<html>
<head>
<title>kod4u</title>
<style>
a {
    text-decoration: none;
}
</style>
</head>
<body>
<h1> Text Decoration None Example </h1>
<p>This is Hyper Link to: <a href="http://www.techtspot.blogspot.com">techtspot</a></p>
<p>Normal Hyperlink have Uderline like <u>this is hyperlink</u>. Here we can remove underline form text.</p>
</body>
</html>
OUTPUT
CSS Text Decoration None Example

No comments:

Post a Comment