It's time to add the team members of the first team.

Create the ol and li elements.

<html>
<head>
<link href="style.css" rel="stylesheet">
</head>
<body>
<h1>Paintball Championship</h1>

<h2>Crimson Menace</h2>
<ol>
<li>Nicholas Leival</li>
<li>Justin Rabackoff</li>
<li>Keith Brown Jr.</li>
</ol>

<h2>Teal Team 6</h2>
</body>
</html>]]>

Make sure to start with the opening ol tag, continue with three li elements, and finish with the closing ol tag.