Get Programming with JavaScript - Listing 17.02
Listing 17.02 - Ordered and unordered lists
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Listing 17.02</title>
</head>
<body>
<h1>My Movie Ratings</h1>
<p>Brief info about my favorite movies.</p>
<h2>Movies</h2>
<h3>Inside Out</h3>
<p>An emotional adventure inside the head of a young girl.</p>
<h4>Actors</h4>
<ul>
<li>Amy Poehler</li>
<li>Bill Hader</li>
</ul>
<h4>Directors</h4>
<ol>
<li>Pete Doctor</li>
<li>Ronnie del Carmen</li>
</ol>
</body>
</html>