Coding

HTML Resources

πŸ™ Images πŸŒ„

Using Pixabay


Using Google Images


Resizing Images


πŸ‘¨β€πŸ’» Code to Try πŸ‘©β€πŸ’»

Bold

<b> </b>

<p><b>This text is bold</b></p>

Italics

<i> </i>

<p><i>This text is italic</i></p>

Superscript

<sup> </sup>

<p>This is <sup>superscripted</sup> text.</p>

Subscript

<sub> </sub>

<p>This is <sub>subscripted</sub> text.</p>

Break

<br> (no closing tag)

The <br> tag creates an empty line, like hitting return.

Webpage Background Color

<body style="background-color:______;">

<body style="background-color:pink;">


Note: This goes in the first body tag

List of HTML Color Names

Text Color

<p style="color:_____;">Text here</p>

<h1 style="color:DodgerBlue;">Cats Rule</h1>

List of HTML Color Names

Text Background Color

<p style="background-color:_______;">Text here</p>

<p style="background-color:Tomato;">Dogs Drool</p>


List of HTML Color Names