Technology, Web & Business Forum

You are here: Technology, Web & Business Forum : Web Development : Design : HTML help. PLZ HELP!?


Welcome to the Technology, Web & Business Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.


Design Talk about web design techniques and ideas in CSS, HTML, etc.


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-21-2008
Junior Member
 
Join Date: Apr 2008
Posts: 1
Default HTML help. PLZ HELP!?

I know I asked a question similar to this earlier, but please help, this is the full question.

I want to make some text on my page bold and big. They will be like captions. A word will be bigger and bolder, then under it, will be the section. Here is what I have been doing and it hasn't worked.

For example, if I want a header to be 'Me', here is what I do. -

<big><b>Me</big>/b><br>
<br> (I put the<br> to skip spaces)
And here goes my text.

But the problem is, everything ends up like that. How do I fix it?
__________________
Powered by Yahoo! Answers
Reply With Quote
  #2 (permalink)  
Old 04-25-2008
Junior Member
 
Join Date: Apr 2008
Posts: 1
Default

HTML works in a very simple, very logical, format, using “tags” Think of tags as making your structure. Let's say you want a heading. You will put a tag at the exact point you want the heading to start and another tag where you want the heading to stop. If you want just a word to be emphasized, you will place a start emphasis tag at the beginning of the word and an end emphasis tag at the end of the word.
All tag formats are the same. They begin with a less-than sign: < and end with a greater-than sign: >. Always. No exceptions. What goes inside the < and > is the tag. Learning HTML is learning the tag to perform whatever command you want to do.

In the old HTML standards, we used to use B for bold.

1. <b> is the beginning strong tag.
2. "Joe" is the word being affected by the <strong> tag.
3. </b> is the end strong tag. Notice it is exactly the same as the beginning tag except there is a slash in front of the tag command.
4. This is what the strong tags above produced: <b>Joe</b>


*You can use the tag <strong></strong> for the same effect.
*For header you can use: <h1></h1> you can increase the number to change the size font.
Good luck!!
__________________
Powered by Yahoo! Answers
Reply With Quote
  #3 (permalink)  
Old 04-25-2008
Junior Member
 
Join Date: Apr 2008
Posts: 1
Default

the tag for a header is <h1><h2><h3> etc up to 6, not <big>. Also, you need to have the closing tags to be in the correct order, in stead of <big><b></big></b>, try <big><b></b></big>.

hope that helps!
__________________
Powered by Yahoo! Answers
Reply With Quote
  #4 (permalink)  
Old 04-25-2008
Junior Member
 
Join Date: Apr 2008
Posts: 1
Default

The problem with your HTML code is improper closing of the tags. instead of "<big><b>Me</big></b>", itshould be "<big><b>Me</b></big>"
__________________
Powered by Yahoo! Answers
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -5. The time now is 07:52 PM.