In: Computer Science
Please use markup language HTML5 please.
For this homework assignment, you will create a Web site made up of three different pages and links between those pages
Index.htm
Content.htm
For this page, you have considerable flexibility. You can use any content that you want. Pick a subject in which you are interested, and teach me something or inform me about it. You do not need to write all of the content yourself. You can cut and paste it from the Web.
To get full credit, your page MUST meet the following minimum requirements.
Copyright.htm
index.htm
<!DOCTYPE html>
<html>
<head>
<!--Appears on the title bar of
browser-->
<title>Home</title>
</head>
<body>
<!--top horizontal line-->
<hr>
<center>
<nav>
<a
href="content.htm">Contents</a><br>
<a
href="copyright.htm">Copyright</a>
</nav>
</center>
<!--horizontal line after menu-->
<hr>
<!--Level 1 heading with your name-->
<center><h1>Your Full
Name</h1>
<br>
<figure>
<!--relative reference is used-->
<img
src="image1.jpg" >
<figcaption>Figure Caption for Image 1 with relative
reference</figcaption>
</figure><br><br>
<figure>
<!--absolute
reference is used-->
<!--use the
url of image in src-->
<img
src="image1.jpg" >
<figcaption>Figure Caption for Image 2 with absolute
reference</figcaption>
</figure>
</center>
<!--bottom horizontal line-->
<hr>
<!-- copyright-->
<footer>
<center>
© Your Name
</center>
</footer>
</body>
</html>
contents.htm
<!DOCTYPE html>
<html>
<head>
<!--Appears on the title bar of
browser-->
<title>Content</title>
</head>
<body>
<!--top horizontal line-->
<hr>
<center>
<nav>
<a
href="index.htm">Home</a><br>
<a
href="copyright.htm">Copyright</a>
</nav>
</center>
<!--horizontal line after menu-->
<hr>
<!--Bookmarks-->
<a href="#notes">Key
Notes</a><br>
<a href="#syntax">Basic
Syntax</a><br>
<a href="#useful">Useful Links</a>
<!--Level 1 heading with Purpose of
site-->
<center>
<article>
<h1>HTML
Basics</h1>
</article>
<br>
<!--image
<figure>
<!--relative
reference is used-->
<img
src="image3.jpg" >
<figcaption>Figure Caption for HTML Logo
</figcaption>
</figure>
</center>
<!--Section 1-->
<section>
<center>
<h2
id="notes">Key Notes</h2>
<p
align="center">HTML is a markup language. It stands for
<strong>Hypertext Markup
Language..</strong></p>
</center>
</section>
<!--Section 2-->
<section>
<center>
<h2
id="syntax">Basic Syntax</h2>
<xmp>
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
</xmp>
</center>
</section>
<!--Section
3-->
<section>
<center><h2
id="useful">Useful
Links</h2></center><br>
<!--Bullet list-->
<ol>
<li><a
href="">link 1</a></li>
<li><a
href="">link 2</a></li>
<li><a
href="">link 3</a></li>
</ol>
<center>
<a
href=""><img src="ClickMe.jpg" ></a>
</center>
</section>
<!--bottom
horizontal line-->
<hr>
<!-- copyright-->
<footer>
<center>
© Your Name
</center>
</footer>
</body>
</html>
copyright.htm
<!DOCTYPE html>
<html>
<head>
<!--Appears on the title bar of
browser-->
<title>Copyright</title>
</head>
<body>
<!--top horizontal line-->
<hr>
<center>
<nav>
<a
href="index.htm">Home</a><br>
<a
href="content.htm">Contents</a><br>
</nav>
</center>
<!--horizontal line after menu-->
<hr>
<center>
Author : Your
Name<br><br>
Date Submitted :
<time >Tuesday, 31 October
2017</time><br>
</center>
<!--bottom horizontal line-->
<hr>
<!-- copyright-->
<footer>
<center>
© Your Name
</center>
</footer>
</body>
</html>
Output :