html help

If I use this tag am I useing it right or am I miss typing it

<p style="color:white;
link:color;"#FFFF00"
font-family:Times New Roman;
font-size:medium;">

I am useing Inline CSS and I want to make my text white and my Hyperlinks Yellow.
 
<p style="color:white;
link:color;"#FFFF00"
font-family:Times New Roman;
font-size:medium;"p>

I added what i think is correct.
You forgot to add the last p
 
This isn't really a question concerning 'desktop computers' is it?

If you have any further, more indepth questions about HTML and/ or CSS, I would recommend joining up at http://www.codingforums.com/. These guys can help out with pretty much anything you throw at them.

Hope this helps.

Dr. V
 
Last edited:
thanks but

Sould I not use it like this

<p style="color:white;
link:color;"#FFFF00"
font-family:Times New Roman;
font-size:medium;">

Then type my text and link Tag then </p>
 
what you just said should work, I mean by adding the </p>

I've only done a little bit of html coding so i'm no expert
 
I don't use inline but shouldn't it be something like:
<p style="color: white; link:color: #FFFF00; font-family:Times New Roman; font-size:medium;">THE STUFF YOU WANT TO FORMAT</p>

It is preferable to use a style sheet and be sparing about using inline. You can break the lines per your version rather than one line.

Edit: I don't think you can put the link style in paragraph code:

<p style="color: white;
font-family:Times New Roman;
font-size:medium;">
THE STUFF YOU WANT TO FORMAT
</p>

Below is some revised code to show how to mix it up (the links won't be effective with this size of page):
<body bgcolor="#000000">
<a name="topofpage"></a>
<p style="color:yellow; font-family:Times New Roman; font-size:medium;">
THE STUFF YOU WANT TO FORMAT<br>
<a style="color: red" href="#topofpage">To the TOP OF PAGE</a><br>
<a style="color:#FFFFFF; font-family:Arial; font-size:small" href="#bottomofpage">To the BOTTOM OF PAGE</a><br>
MORE STUFF you want to format
</p>
<a name="bottomofpage"></a>
</body>
 
Last edited:
Back
Top