73 lines
1.6 KiB
HTML
73 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<title>Practice with HTML5</title>
|
|
|
|
<body>
|
|
<h1>1.</h1>
|
|
<!-- Your solution to #1 here -->
|
|
<p><i>Your work is going to fill a large part of your life, and the only way to be truly satisfied is to do what you believe is great work. And the only way to do great work is to love what you do. If you haven't found it yet, keep looking. Don't settle. As with all matters of the heart, you'll know when you find it.</i></p>
|
|
<p>-- Steve Jobs</p>
|
|
<hr>
|
|
|
|
<h1>2.</h1>
|
|
<!-- Your solution to #2 here -->
|
|
<p><!-- & --></p>
|
|
<hr>
|
|
|
|
<h1>3.</h1>
|
|
<!-- Your solution to #3 here -->
|
|
<p><p>Nice!</p></p>
|
|
<hr>
|
|
|
|
<h1>4.</h1>
|
|
<!-- Your solution to #4 here -->
|
|
<a href="stuff.html">Go to my stuff</a>
|
|
<hr>
|
|
|
|
<h1>5.</h1>
|
|
<!-- Your solution to #5 here -->
|
|
<a href="https://www.zybooks.com"><img src="zyBooks_logo.png"></a>
|
|
<hr>
|
|
|
|
<h1>6.</h1>
|
|
<!-- Your solution to #6 here -->
|
|
<ol>
|
|
<li>Desktop
|
|
<ul>
|
|
<li>Linux</li>
|
|
<li>Mac OS</li>
|
|
<li>Windows</li>
|
|
</ul>
|
|
</li>
|
|
<li>Mobile
|
|
<ul>
|
|
<li>Android</li>
|
|
<li>iOS</li>
|
|
</ul>
|
|
</li>
|
|
</ol>
|
|
<hr>
|
|
|
|
<h1>7.</h1>
|
|
<!-- Your solution to #7 here -->
|
|
<table>
|
|
<tr>
|
|
<td colspan=3>1</td>
|
|
</tr>
|
|
<tr>
|
|
<td rowspan=2>2</td>
|
|
<td>3</td>
|
|
<td>4</td>
|
|
</tr>
|
|
<tr>
|
|
<td>5</td>
|
|
<td>6</td>
|
|
</tr>
|
|
|
|
|
|
</table>
|
|
<hr>
|
|
</body>
|
|
|
|
</html>
|