PHP script containing HTML and PHP code?

Ansari

New member
Just create a CSS file and define three styles for your comments.

.styleOne{
background:cyan;
color:black;
font-family:arial;
font-size: 10px;
}

.styleTwo{
background:yellow;
color:black;
font-family:<--------2nd font family----------------;
font-size: 10px;
font-width:bold;
}

.styleThree{
background:#999999;
color:black;
font-family:arial;
font-size: 10px;
}

now u can use these classes with any tag. for example:
<div class="styleOne">
<p> The quick brown fox jumps over the lazy dog. </p>
</div>

or

<p class="styleTwo"> The quick brown fox jumps over the lazy dog. </p>
 
ok so i have to write a PHP script with HTML and PHP code and i need a little help. i have to make the background light blue. and then use three styles of comments to include my name the date and the number of the lab exercise.

so how do i make the backgound light blue? and use the three styles?? plz help! just answer any part of the question that you know.
 
Back
Top