programming-examples/html/Text/css_text_decoration.html
2019-11-15 12:59:38 +01:00

13 lines
228 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Html5</title>
<meta charset="UTF-8">
<style type="text/css">
.underscore {text-decoration: underline;}
</style>
</head>
<body>
<span class="underscore">Underscore</span> text
</body>
</html>