headline help

biferi

Daemon Poster
Messages
690
if I use inline css I know how to make a Headline tag
<H1> text here </H1>

But I want to use Internale css I know my style code goes inbetween the HEAD Tags of the html file.
Do I put it like this

H1{"color:white;font-family:Times New Roman, Arial;"}
 
<head>
<style type="text/css">

h1
{
color:white;
font-family:"Times New Roman";
}
 
so am I right that Inline css for this is

<H1 style="color:white;font-family:Times New Roman, Arial;">
 
Back
Top Bottom