<html>
<head>
<title>
First html
</title>
<style>
h1{
width: 30%;
color:rgb(12,155,25);
}
p{
color:rgb(100,200,300);
font-size:30px;
font-family:courier;
}
body{
background-color:rgb(0, 0, 0);
}
.heading{
color:rgb(127,77,77);
}
h1:hover{
font-size:30px;
background-color:rgb(255,255,255);
}
</style>
</head>
<body>
<h1 id="1" class="heading"> First Page</h1>
<h1 id="2" class="456"> First Page</h1>
<p id="3" class="heading">Table 1 is empty hasfhaskf skfjadfk</p>
<p id="4" class="456">Table 1 is empty hasfhaskf skfjadfk</p>
</body>
</html>