<!doctype html>
<!--Author: Morrison-->
<html>
<head>
<title>nodeExample</title>
<link rel="stylesheet" href="nodeExample.css"/>
<script src="nodeExample.js">
</script>
</head>
<body>
<h2>Games with Nodelists</h2>
<p><button id="paragraphsBold">Make Paragraphs Bold!</button></p>
<p><button id="rightJustify">Click me!</button> to right-justify all
paragraphs centered by the class "display".</p>
<p><button id="kermit">Click me!</button> to turn all list items
dark green.</p>
<p><button id="redListItem">Click me!</button> to turn all list items
inside of an unordered list red.</p>
<p><button id="Pepecide">Click me!</button> to
get rid of Pepe. </p>
<p>Here is a paragraph All of the buttons should work,
even if we add more elements to the page.</p>
<p>This is another paragraph</p>
<p class="display">I am the center of attention.</p>
<p class="display">Pepe Le Pew is the scenter of attention.</p>
<p class="display">
<img src="https://assets.change.org/photos/7/sx/aq/mDSXAqgTqBPuZBs-800x450-noPad.jpg?1615233613"
alt="picture of Pepe Le Pew"
style="width:40%;border solid 1px black;"/>
<p>Ninth Street Eateries</p>
<ul>
<li>International Delights</li>
<li>Devil's Pizza</li>
<li>Chez Cosmique</li>
<li>Bahn's</li>
<li>Dane's Place</li>
</ul>
<p>Most worthy subjects at NCSSM</p>
<ol>
<li>Computer Science</li>
<li>Math</li>
<li>Latin</li>
<li>Biology</li>
</ol>
<p>Small Colleges</p>
<ul>
<li>Deep Springs College</li>
<li>Carleton College</li>
<li>Swarthmore College</li>
<li>Haverford College</li>
</ul>
</body>
</html>