Can you make the <u> line bigger?

How can I make it bigger, if it’s possible? It looks weird to have

<h2><u>this and that<u></h2> because the underline is so small

wait um, what’s span exactly? I kinda assumed you’d just go <style class… ect> >_<

Span is just a tag that groups inline elements in a document. It’s perfect for what everyone’s been sugesting here for using a class to underline various elements in your page.

If you have the class “underline” then you can use it on multiple elements…

<style type="text/css">
.underline{ border-bottom: 3px solid; }
.red{ color: #900; }
</style>

So now you can use the class on any element.

<h2 class="underline">Heading</h2>
<p>
This sample is only <span class="underline">underlined</span>. While this sample is <span class="underline red">underlined and has red text</span>.
</p>
<p class="underline">All of this is underlined.</p>

You get the idea. It’s nice to have a few classes that are general enough that you can use them as needed. If you know you’re only going to underline text in a specific HTML tag then it may make more sense to do something like:

<style type="text/css">
h2{ border-bottom: 3px solid; }
</style>

Or

<style type="text/css">
h2.underline{ border-bottom: 3px solid; }
</style>