PDA

View Full Version : html problems?


MadeYouLook
15th June 2006, 10:31 PM
http://www.w3schools.com/html/html_examples.asp

if anyone is having problems with their html section this might help

ImHisServant
15th June 2006, 11:57 PM
I'm glad you posted that... I found that site earlier and was gonna do that... but then got off in another direction and forgot about it.

FallingWaters
21st June 2006, 08:08 PM
Thank you.

I posted something in my HTML section today. I surrounded it with HTML language but it didn't translate, it just came out with the words and brackets surrounding the words. I can't seem to change the font color and size in the HTML section.

( To get the HTML language, what I did was I wrote a new PM which was in fact the text I wanted to use, formatted it the way I wanted, clicked that A/A thing that showed the HTML language, copied and pasted into that section of my homepage, but nope. Didn't work. )

Ainuhina
22nd June 2006, 02:50 AM
wich colour and font do you want it in....

normally you just have to put < font face="name of font" color="#colour code or name of colour"> in front of the text and </font> at the end...then it should be working....

for size you have to put <h?> in front and </h?> behind it - if I remeber that correctly...

mindalan
22nd June 2006, 04:39 PM
Thanks, I need to work on my code. Nothing is showing up.

FallingWaters
22nd June 2006, 06:26 PM
wich colour and font do you want it in....

normally you just have to put < font face="name of font" color="#colour code or name of colour"> in front of the text and </font> at the end...then it should be working....

for size you have to put <h?> in front and </h?> behind it - if I remeber that correctly...
Thank you, Luv. I will try that.

LivingRightForGod
23rd June 2006, 12:22 PM
I am stuck on this

hellllp

Ainuhina
23rd June 2006, 12:24 PM
I am stuck on this

hellllp

What do you need help with :)

mindalan
27th June 2006, 11:12 AM
I'm bumping this so others can find it.

FallingWaters
27th June 2006, 11:44 AM
In the HTML section, I have put some words. I finally successfully changed the font size and color, but I ma having a problem with "hard returns" not showing up. I can't get the words I want to start on a new line. It's all run together with no paragraphs or spacing. I don't like that. It's makes it tougher to read.

Does anyone know what's the easiest way to add hard returns into my document?

Black_Ivy
27th June 2006, 09:20 PM
A line break (the equivilant of pressing return once) is accomplished by inserting a <br /> between the lines.
text 1<br />text 2<br />text 3
If you enter the above code this is what you get:

text1
text2
text3

If you want a new paragraph (the equivilant of pressing return twice) you surround each paragraph with the <p> tag.
<p>First Paragraph</p>
<p>Second Paragraph</p>
<p>Third Paragraph</p>
This is what you get when you enter this coding:

First Paragraph

Second Paragraph

Third Paragraph