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: body, CSS, Double, example, html, span, Style, Text, underline, Underlined