Frontend Engineering, Volume I

HTML Chapter 1 Examples 1g

© 2012, Martin Rinehart


Adding Font Tags

In Notepad++:

<!DOCTYPE html>

<h1>A Poem</h1>

<p>Here we are learning<br>
<font size='+2'>H</font><font size='+1'>T</font>M<font size='-1'>L</font>.</p>
<p>We'll <font size='+1' color='red'>master</font> the skill,<br>
And it will <font face='monospace'>serve</font> <font face='sans-serif'>us well</font>.</p>

<p>Written by a lover of</p>
<ul>
	<li>Beeches</li>
	<li>Maples</li>
	<li>Oaks</li>
</ul>

In Opera (relevant part):
View of example 1g



Feedback: MartinRinehart at gmail dot com

# # #