<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Page</title>
<style>
p {
text-align:center;
font-size:36px;
}
#mydiv {
text-align:center;
background-color:#FFCC00;
height:20vh;
}
.nice1 {
font-size:36px;
font-family:Calibri Light;
text-align:center;
}
#th1 {
font-stretch:200%;
text-decoration:underline;
}
table {
border:thin #999999 dotted;
border-spacing:10px;
padding:10px;
}
td {
border:thin #CC6600 solid;
border-radius:10px;
}
</style>
</head>
<body>
<p>This is a P tag</p>
<div id="mydiv">This div gas ID called: mydiv</div>
<h1 class="nice1">This H1 has a class name: nice1 </h1>
<table style="width: 50%" align="center">
<tr>
<td class="nice1">This is calss mice1</td>
<td id="th1" class="nice1">id=th1 class=nice1</td>
</tr>
</table>
</body>
</html>