Text Decoration with CSS and link also

Text Decoration with CSS and link also

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
   text-decoration: underline;
}

h1 {
   text-decoration: overline;
}

h1 {
   text-decoration: line-through;
}

a {
   text-decoration: none;
}
</style>
</head>
<body>
<h1>Text example with underlined</h1>
<h1>Text example with overlined</h1>
<h1>Text example with line going through </h1>
<a href="#">Link example without decoration</a>
</body>
</html>

Comments

Popular Posts