What is the dialogue script for making text bigger and smaller?

The title explains it. I’m asking which </> command makes text bigger or smaller.

;-; i refuse to take responsibility for this stupidity

oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki oki

</br> , </marquee>, </b>, </i>

You can use the h1, h2, h3, h4, and h5 tags to make headings; h1 is the biggest.
Example:

<h1>Big heading!</h1>
<h2>Smaller heading.</h2>

Preview:

Big heading!

Smaller heading.


You can also just use any text element like p or span, and add a style attribute so you can really customize the size. https://www.w3schools.com/cssref/pr_font_font-size.asp
Example:

<span style="font-size: 2.5em">This text is 2.5 times normal text size!</span>
<span style="font-size: large">This text has its font-size value set to large.</span>

Preview:
This text is 2.5 times normal text size!
This text has its font-size value set to large.

1 Like

I would advise against using the marquee tag as it is deprecated.

1 Like