HTML:how to double underline text with css style

<html>
<head>
<title>Double Underlined Text Example</title>
<style type=”text/css”>
.double_underline {
border-bottom: 3px double;
}
</style>
</head>
<body>
<span class=”double_underline”>Double Underlined Text</span>
</body>
</html>

Tags: , , , , , , , , ,

Leave a Reply

You must be logged in to post a comment.