CSS stands for Cascading Style Sheet. CSS explains to the HTML what elements to display on screen.
We are using CSS3.
<style>
body {
background-image: url("parch.jpg");
background-repeat: repeat-x;
}
</style>
<body style="background-color: #DAF7A6;">
Advanced Technology College
Advanced Technology College
Advanced Technology College
<p style="color: black;">Advanced Technology College</p>
<div class="three" id="three"><p>Advanced Technology College</p></div>
<style>#three {color: blue; position: absolute; right: 300px; bottom: 400px;}</style>