Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Leer Miscellaneous Elements | Advanced Text Formatting Elements
Introduction to HTML

book
Miscellaneous Elements

The <sup> element represents a superscript, which is text slightly above the baseline and is often used for footnotes or to indicate exponentiation.

html

index.html

copy
<p>The formula for the volume of a sphere is V=4/3pir<sup>3</sup>.</p>

The <sub> element represents a subscript, which is text that is slightly below the baseline and is often used for chemical formulas or to indicate indices.

html

index.html

copy
<p>The chemical formula for water is H<sub>2</sub>O.</p>

The <address> element represents the contact information for the author or owner of a document. It is typically displayed in italicized text and is usually placed at the end of a document.

html

index.html

copy
<address>
John Doe<br />
123 Main Street<br />
Anytown, USA 12345<br />
<a href="mailto:johndoe@example.com">johndoe@example.com</a>
</address>

The <small> element represents small print.

html

index.html

copy
<p><small>I code with</small> Codefinity</p>

The <del> element represents text that has been deleted or struck through. It is typically displayed with a line through the middle of the text.

html

index.html

copy
<p>I do <del>not</del> have a car</p>

The <ins> element represents text inserted or marked as new. It is typically displayed with an underline.

html

index.html

copy
<p>She go<ins>es</ins> to the shop</p>

Was alles duidelijk?

Hoe kunnen we het verbeteren?

Bedankt voor je feedback!

Sectie 4. Hoofdstuk 4

Vraag AI

expand
ChatGPT

Vraag wat u wilt of probeer een van de voorgestelde vragen om onze chat te starten.

some-alt