Not logged in. Login

E7 HTML Page

This should be saved as an .html file for Exercise7.

<!DOCTYPE html> 
<html lang="en">
<head> 
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" />
<script src="https://cmpt165.csil.sfu.ca/js/jquery-3.4.1.js"></script>
<script src="logic.js"></script>
<title>Exercise 7</title>
</head> 
<body>
<h1>Exercise 7</h1>

<section id="animations">
<h2>Style Animation</h2>
<p>These buttons should animate the heading above as specified in the exercise:</p>
<div class="actionbuttons">
<button id="demo">demo</button>
<button id="left">&larr;</button>
<button id="right">&rarr;</button>
<button id="toggle">&#8634;</button>
</div>
</section>

<section id="addremove">
<h2>Adding and Removing Content</h2>
<p>These buttons should add content below:</p>
<div class="actionbuttons">
<button id="hello">Say hello.</button>
<button id="goodbye">Say goodbye.</button>
<button id="remove">I take it back!</button>
</div>
<div id="newcontent"></div>

</section>

</body>
</html>
Updated Sat Aug. 24 2019, 11:27 by ggbaker.