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">
Mark Rae - 24 Jun 2007 20:51 GMT
> 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>

Signature
http://www.markrae.net
Teemu Keiski - 24 Jun 2007 20:51 GMT
There's a dedicated element for that. <strong></strong>.

Signature
Teemu Keiski
AspInsider, ASP.NET MVP
http://blogs.aspadvice.com/joteke
http://teemukeiski.net
> 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">
John Timney (MVP) - 24 Jun 2007 22:23 GMT
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
> 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">
Eliyahu Goldin - 25 Jun 2007 08:58 GMT
And the setting for bold will be
font-weight:bold;

Signature
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
> Why not learn about simple span elements for inline styling
>
[quoted text clipped - 13 lines]
>> In other words, what should go in this code to make the font bold?
>> <font face="Verdana" Size="2">
John Timney (MVP) - 25 Jun 2007 21:47 GMT
lol...........what can I say!

Signature
--
Regards
John Timney (MVP)
http://www.johntimney.com
http://www.johntimney.com/blog
> And the setting for bold will be
>
[quoted text clipped - 17 lines]
>>> In other words, what should go in this code to make the font bold?
>>> <font face="Verdana" Size="2">
three-seven@yandex.ru - 27 Jun 2007 08:59 GMT
Simply...
<span style="font-weight: 600">Text</span>
Work: Opera, IE, NN, Mozilla.
three-seven@yandex.ru - 27 Jun 2007 09:03 GMT
And...
<font face="Verdana" Size="2" style="font-weight: 600">