A lot of the stylization of a website in HTML come from another language like CSS, but there are some things you can do with HTML to stylize your website. The first thing you can do is editation of font sizes either by using diffrent heading sizes(<h1>,<h2>,<h3>, etc).
You can also do things like bold<b>, italize<i>, and underline<u>
Make lists Ordered<ol> and Unordered<ul> which need the <li> tag inside for each list iteam.
Add a image<img scr = “url” alt = ” description of picture in case it doesnt show up”> or a link to a external link<a href=”url“> text that link is attached to </a>.
You can also add things like line breaks<br>(which doesn’t need to use a ending tag since it is empty)
Or changing the color,kind, size,ect of font, by putting style=”color:red””font-family: …” “backround-color : . . .” “font-size: ..%”.
Along with things like tables, which I will get into how to make on a later
Below is an example with some of the stylistic elements.
