Coding
HTML Resources
HTML Resources
π Images π
π Images π
Using Pixabay
Using Pixabay
Using Google Images
Using Google Images
Resizing Images
Resizing Images
π¨βπ» Code to Try π©βπ»
π¨βπ» Code to Try π©βπ»
Bold
Bold
<b> </b>
<p><b>This text is bold</b></p>
Italics
Italics
<i> </i>
<p><i>This text is italic</i></p>
Superscript
Superscript
<sup> </sup>
<p>This is <sup>superscripted</sup> text.</p>
Subscript
Subscript
<sub> </sub>
<p>This is <sub>subscripted</sub> text.</p>
Break
Break
<br> (no closing tag)
The <br> tag creates an empty line, like hitting return.
Webpage Background Color
Webpage Background Color
<body style="background-color:______;">
<body style="background-color:pink;">
Note: This goes in the first body tag
Text Color
Text Color
<p style="color:_____;">Text here</p>
<h1 style="color:DodgerBlue;">Cats Rule</h1>
Text Background Color
Text Background Color
<p style="background-color:_______;">Text here</p>
<p style="background-color:Tomato;">Dogs Drool</p>