Question about HTML codes?

  • Thread starter Thread starter Pixiedust
  • Start date Start date
P

Pixiedust

Guest
I need to know what the boxes are called that you can put around text and stuff like on myspace and other websites that have curved corners or whatever.
 
Those are <p>, or paragraph tags. You can give that tag attributes such as border, size, colour, positioning, etc.

The curved corners you see are images (or sometimes 2) merged into one, thus giving that curved look.

If you put the two together, you'll get the effect you see. Think of it like a jigsaw puzzle. When you write the code, you "tell" the browser where you want it to be or how to be displayed (see attributes I mentioned above).
 
Those are <p>, or paragraph tags. You can give that tag attributes such as border, size, colour, positioning, etc.

The curved corners you see are images (or sometimes 2) merged into one, thus giving that curved look.

If you put the two together, you'll get the effect you see. Think of it like a jigsaw puzzle. When you write the code, you "tell" the browser where you want it to be or how to be displayed (see attributes I mentioned above).
 
Back
Top