<!doctype html>
<html>
<head>
<style>
body{
color:green;
}
h1, h2{
border-bottom:1px solid black;
}
p.purple{
color:purple;
font-size: 25px;
font-family:Helvetica;
}
p.green{
color:green;
font-size: 25px;
font-family:Helvetica;
}
</style>
</head>
<body>
<h1>The First Web Site</h1>
<p class="blue">Welcome to the first Web Site. Everything you want to know about fish is in the web site></p>
<h2>This is a section on Bass fish</h2>
<p class="purple">Bass fish live in lakes. </p>
</body>
</html>