<!DOCTYPE html>
<HTML>
<style>
p {
font-family: Arial, sans-serif;;
color: red; font-size: 18px;
}
</style>
<body>
<p>Text Goes Here</p>
<p style=
"font-family: Consolas, monospace; color: black; font-size: 12px;">
Written By: Meri Swain
</br>
Contact Information: mswain1285@gmail.com
</p>
</body>
</HTML>
<!DOCTYPE html>
<HTML>
<STYLE>
body {
background-color: lightblue;
}
body {
font-family: "PT Mono", monospace; color:black; font-size: 14px;
}
</STYLE>
<head>
<header style= "color: yellow; size: 16px; text-align: right;">MERI SWAIN
</header>
</head>
<body>
<h1>Chapter One</h1>
<p>This is the first paragraph</P>
</body>
</HTML>
<!DOCTYPE html>
<HTML>
<style>
table, th, td {
border: 1.5px solid black;
border-collapse: collapse;
border-bottom: 1px solid #ddd;
font-family: Courier New, monospace;
text-align: left;
padding: 15px;
}
table {
width: 70%;
}
th {
Height: 80px;
background-color: gray;
color: darkblue;
}
</style>
<body>
<table>
<tr>
<th>Title</th>
<th>Number</th>
</tr>
<tr>
<td>Word</td>
<td>0</td>
</tr>
<tr>
<td>Word</td>
<td>0</td>
</tr>
<tr>
<td>Word</td>
<td>0</td>
</tr>
<tr>
<td>Word</td>
<td>0</td>
</tr>
<tr>
<td>Word</td>
<td>0</td>
</tr>
<tr>
<th style="text-align: left;">Total</th>
<th style="text-align: left;">00.00</th>
</tr>
</table>
</body>
</html>