Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124

After learning the basic paragraph tags and styling in Activities 1 and 2, Activity 3 was about diving deeper into structural and specialized HTML tags. We learned how to format text for math, lists, quotes, addresses, and even how to show text that has been “deleted” or “inserted”βall using special HTML tags designed for these exact purposes.
The following screenshots show the results of the different formatting exercises we completed. Notice how each tag creates a very specific visual effect and structure.





These screenshots show the HTML code for Activity 3, highlighting the unique tags used for complex formatting tasks.





Let’s look at the most interesting parts:
<sup> (Superscript) and <sub> (Subscript) tags.
2<sup>2</sup>, the browser instantly handles the formatting, which is much cleaner than trying to use complex styling.<ol> (Ordered List) for numbered lists and <ul> (Unordered List) for bullet points, with <li> (List Item) for the content of each item.<pre> (Preformatted) tag.<pre> tag is special because it preserves every character, making it great for displaying poetry, code examples, or structured data where formatting is critical.<del> (Deleted text) and <ins> (Inserted text).
<del>: The browser automatically puts a strikethrough line through the text to show it’s removed.<ins>: The browser automatically underlines the text to show it’s new.Here is a <del>wrong</del> and here is the <ins>correct</ins> word. This taught me how to use HTML to give meaning to content edits, not just visual changes.<dl> (Definition List), <dt> (Definition Term), and <dd> (Definition Description) tags.<dd>) slightly, making the list easy to read and understand.Activity 3 was a major leap forward from just basic paragraphs. The main lessons were:
<address>, <dl>, <del>). Using these semantic tags tells the browser and search engines exactly what kind of information they are looking at, which is far better than just styling a paragraph.<pre> tag.