score: 95/100
directions
- Create a new HTML file and save it as Laboratory8.html.
- The title should be Laboratory 8.
- Create a
<h1>heading that will display “Types of Websites”. - Create another
<h1>heading that will display “Research Chapters”. - Both headings should be written using “Calibri”.
- Using unordered and ordered lists, create a web page that will display the output same as the attached file.
- All list items should be written using “Georgia”.
- Upload the screenshots of (a) source code and (b) output.
code
<!DOCTYPE html>
<html>
<head>
<title>Laboratory 8</title>
</head>
<body>
<h1 style="font-family: 'Calibri', monospace;">Types of Websites</h1>
<ul style="list-style-type: circle; font-family: 'Georga', serif;">
<li>Personal Websites</li>
<li>Photo Sharing Websites</li>
<li>Writers and Authors Websites</li>
<li>Community Building Websites</li>
<li>Blogging Websites</li>
<li>Informational Websites</li>
<li>Directory Websites</li>
<li>E-Commerce Websites</li>
<li>Government Websites</li>
<li>School or University Websites</li>
</ul>
<h1 style="font-family: 'Calibri', monospace;">Research Chapters</h1>
<ol style="list-style-type: upper-roman; font-family: 'Georga', serif;">
<li>The Problem and its Setting</li>
<li>Review of Related Literature</li>
<li>Research Methodology</li>
<li>Presentation, Analysis and Interpretation of Data</li>
<li>Summary, Conclussions and Recommendations</li>
</ol>
</body>
</html>