Frontend Engineering, Volume I

HTML Chapter 1 Examples 1e

© 2012, Martin Rinehart


Adding An Unordered (Bullet) List

In Notepad++:

<!DOCTYPE html>

<h1>A Poem</h1>

<p>Here we are learning
HTML.</p>
<p>We'll master the skill,
And it will serve us well.</p>

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

In Opera:
View of example 1e



Feedback: MartinRinehart at gmail dot com

# # #