Help with HTML codes?

Steve08

New member
Is this HTML code correct?
<font size="6" color="red" font face="freestyle script">Text goes here</font>

If its wrong what is the correct code I want a code to change text font size and colour all in one code if possible if not can I use three diffrent ones at once and what are they?
 
It seems to be OK
no errors and it works
But this is the easier way:

<html>
<style type="text/css">

body {
color: #00e800;
font-family: freestyle script;
}

</style>
Text goes here
</html>


Black
 
Back
Top