LABORATORY 2 : RECALL
1.The markup language code to display your name in the largest-size heading element.<h1>NURAIN FAREHA</h1>
2.The markup language code for unordered list to display the days of the week.
<ul>
<li>sunday</li>
<li>monday</li>
<li>tuesday</li>
<li>wednesday</li>
<li>thursday</li>
<li>friday</li>
<li>saturday</li>
</ul>
3. The markup language code for an ordered list that uses uppercase letters to order the items
<ol type="A">
<li>spring</li>
<li>summer</li>
<li>fall</li>
<li>winter</li>
</ol>
4. Think of a favourite quote by someone you admire. Write the XHTML code
to display the person's name in a heading and the quote in a blockquote.
<head>
<title>quote</title>
<h1>Marilyn Monroe</h1>
<body>
<blockquote>
“Boys think girls are like books. If the cover doesn't catch their eye They won't bother to read what's inside.
</blockquote>
</html>
Comments
Post a Comment