EXERCISE 1
<>index1.html>...
​
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width-device-width, initial-scale=1">
<title> Jade's HTML Website</title>
<style>
.container {
margin-left: 50px;
}
td, th {
padding: 15px;
}
.highlight {
background-color: yellow;
}
.table {
margin-bottom: 80px;
}
</style>
</head>
<body>
​
<div class="container">
<h1>Jade's HTML WEBSITE</h1>
Welcome to Jade's HTML Website <b> Hello!!</b>
<h2>Wall of Fame</h2>
<p>
"<i>I</i> will take the blame. <br>Will <i>you</i> do the same?
<br>You put a man in a <strong>frame</strong>,<br> Do you not have any <strong>shame</strong>?
<br>That is what you claim.<br>That this is all just a game.<br>You do not belong in this <u>wall of fame</u>."
<br> - Person
</p>
<hr>
<p>
<a href="https://jadema200907.wixsite.com/computer11" target="_blank">
Jade's Computer 11 Gallery.
</a>
<br>
</p>
<img src="IMG1.jpg" alt="strawberry" width="300" height="400" border="10">
<h2>STRAWBERRY STORY</h2>
<p>Here is a strawberry,<br>He is in solidary,<br>He is so very very sorry.</p>
<h3>Words That Rhyms with Strawberry</h3>
​
<ol>
<li>merry</li>
<ul>
<li>cheerful and lively</li>
</ul>
<li>dairy</li>
<ul>
<li>containing or made form milk products</li>
</ul>
<li>carry</li>
<li>wary</li>
<li>library</li>
<li>primary</li>
<li>winery</li>
<li>celery</li>
</ol>
<table border="8" cellspacing="0" class="table">
<tr>
<th colspan="2" style="font-size: 20px; background-color: yellowgreen;"><b>DAY OF THE WEEK</b></th>
<th class="highlight">Monday</th>
<th class="highlight">Tuesday</th>
<th colspan="2" class="highlight">Wednesday</th>
<th class="highlight">Thursday</th>
<th class="highlight">Friday</th>
<th class="highlight">Saturday</th>
<th class="highlight">Sunday</th>
</tr>
​
<tr>
<td rowspan="3" style="font-size: 20px; background-color: yellowgreen;"><b>TO-DO LIST</b></td>
<td class="highlight">Short Story Writing</td>
<td>Bainstorm</td>
<td>Rough Draft</td>
<td>Edit Rough Draft</td>
<td>Collect Insight From Peers</td>
<td>Rewrite Flawed Parts</td>
<td>Show Final Draft To Professor</td>
<td>Write Final Copy</td>
<td rowspan="3">Rest & Recharge</td>
</tr>
​
<tr>
<td class="highlight">Pre-Calc</td>
<td>Lession 1</td>
<td>Lession 2</td>
<td>Lession 3</td>
<td>Practice Problems</td>
<td>Practice Test</td>
<td>Unit Test</td>
<td>Review Practice</td>
</tr>
​
<tr>
<td class="highlight">Music</td>
<td>Personal Practice 1hr</td>
<td>Group Practice 1hr 30min</td>
<td>Music Transcribing</td>
<td>Music Theory Quiz</td>
<td>One-On-One Music Lession</td>
<td>Group Jamming Session</td>
<td>Personal Practice 2hrs</td>
</tr>
​
</table>
​
</div>
​
</body>
</html>

