Not logged in. Login

Exercise 6: page body

This should be copied into the <body> of the HTML page you create for Exercise 6.

<h1>Exercise 6 Page</h1>

<p>Clicking on that heading should cause an
<code class="js">alert()</code>.</p>

<p id="hoverable">Moving your mouse cursor over this paragraph
should make all <code class="html">&lt;p&gt;</code> get the class
<code class="html">highlighted</code>, which should change their
appearance (if the CSS is working too).</p>

<h2>Disappearing List Items</h2>
<button id="zap">Zap</button>
<ol>
  <li>First item</li>
  <li>Second item</li>
  <li>Third item</li>
  <li>Fourth item</li>
  <li>Fifth item</li>
  <li>Sixth item</li>
</ol>
Updated Sat Aug. 24 2019, 11:27 by ggbaker.