Bold Font

  • Thread starter Thread starter dancer
  • Start date Start date
D

dancer

Using ASP.net 1.1

I know I should be using CSS. But until I have time to learn that, what is
the code for bold font?
In other words, what should go in this code to make the font bold?
<font face="Verdana" Size="2">
 
dancer said:
Using ASP.net 1.1

I know I should be using CSS. But until I have time to learn that, what is
the code for bold font?
In other words, what should go in this code to make the font bold?
<font face="Verdana" Size="2">


<b>.......</b>
 
lol...........what can I say!

--
--
Regards

John Timney (MVP)
http://www.johntimney.com
http://www.johntimney.com/blog


Eliyahu Goldin said:
And the setting for bold will be

font-weight:bold;

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net


John Timney (MVP) said:
Why not learn about simple span elements for inline styling

<span style="font-size:100px;font-family: verdana, times, serif;">easy
example</span>

Regards

John Timney (MVP)
http://www.johntimney.com
http://www.johntimney.com/blog
 
Back
Top