HTML Element Add Comment HTML Element The HTML element defines superscripted text. Example <p>This is <sup>superscripted</sup> text.</p> Try it Yourself »
HTML Element Add Comment HTML Element The HTML element defines subscripted text. Example <p>This is <sub>subscripted</sub> text.</p> Try it Yourself »
HTML Element Add Comment HTML Element The HTML element defines inserted (added) text. Example <p>My favorite <ins>color</ins> is red.</p> Try it Yourself »
HTML Background Color Add Comment HTML Background Color The background-color property defines the background color for an HTML element. This example sets the background color for a page to powderblue: Example <body style="background-color:powderblue;"><h1>This is a heading</h1><p>This is a paragraph.</p></body> Try it Yourself »
Don't Forget the End Tag Add Comment Don't Forget the End Tag Most browsers will display HTML correctly even if you forget the end tag: Example <p>This is a paragraph.<p>This is another paragraph. Try it Yourself » The example above will work in most browsers, but do not rely on it. Note: Dropping the end tag can produce unexpected results or errors.