HTML Help????????????

  • Thread starter Thread starter i got questions
  • Start date Start date
I

i got questions

Guest
I have something that looks like this

<p style="text-align: center; font: 12px tahoma;">
blah blah blah
</p>

How would I:
1. Make that bold
2. Make that underlined
3. Make that both bold and underlined.

If you can show me all 3 you will deff. be best answer
 
<B> = bold on
</B> = bold off
<U> = underline on
</U> = underline off

<p style="text-align: center; font: 12px tahoma;"><B>
blah blah blah
</B></p>
- Bold on then off

<p style="text-align: center; font: 12px tahoma;"><U>
blah blah blah
</U></p>
- Underline on then off

<p style="text-align: center; font: 12px tahoma;"><B><U>
blah blah blah
</B></U></p>
- Bold and Underline on then off
 
Back
Top