Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

21 March 2022

<!--This will be the beginning heading -->


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

<!--This allows you to have a heading that will appear at the top of your browser -->
<head>
<title>The title of the document comes here</title>
</head>

<!--Everything else we want to display in the browser will appear here -->
<body>
<p>This is a sentence outside the blockquote</p>
<hr/> <!--This puts a horizontal rule across your page-->
<blockquote> <!--This allows a specialised indentation for a block of text-->
<p>Please we are learning. Mary had a little lamb. Its fleece was white as snow and
everywhere that Mary went the lamb was sure to go. It followed her to school one day and
that was against the rule. It wmade the children laugh and play to see a lamb at school.</p>
</blockquote>
<hr/>
<!-- The following are showing the various sizes of header formats we have -->
<h1 align="center">Joan is number 1</h1>
<h2 align="right">Hayford is number 2</h2>
<h3 align="left">Emmanuel is number 3</h3>
<h4>Daniel is number 4</h4>
<h5>Gad is number 5</h5>
<h6>Ebenezer is number 6</h6>
<p>This is the sentence after the blockquote</p>

<!-- This centres, sizes and colours a horizontal rule across our page-->
<hr align="center" size="12" width="70%" color="green">
<ul> <!--Creates an unordered list-->
<li>Fruits</li>
<ul>
<li>Oranges</li>
<li>Mango</li>
<li>Avocado pear</li>
</ul>
<li>Vegetables</li>
<ul>
<li>Cabbage</li>
<li>Lettuce</li>
<li>Pepper</li>
</ul>
<li>Carbohydrates</li>
<ul>
<li>Banku</li>
<li>Omotuo</li>
<li>TZ</li>
<li>Acheke</li>
</ul>
</ul>
<ol> <!--Creates an ordered list-->
<li>Fruits</li>
<ol>
<li>Oranges</li>
<li>Mango</li>
<li>Avocado pear</li>
</ol>
<li>Vegetables</li>
<ol>
<li>Cabbage</li>
<li>Lettuce</li>
<li>Pepper</li>
</ol>
<li>Carbohydrates</li>
<ol>
<li>Banku</li>
<li>Omotuo</li>
<li>TZ</li>
<li>Acheke</li>
</ol>
</ol>
</body> <!-- Closes the body element -->
</html> <!--Closes the whole document -->

You might also like