Page is a not externally linkable
- Code, Content, and Presentation
-- CSS
---- <h1> as bold opening phrase in top paragraph


DrDoc - 2:36 pm on Aug 22, 2003 (gmt 0)


For standards compliant browsers (= not IE):

h1#indexpage {
display: inline;
font: bold 16px verdana;
}
h1#indexpage+p {
display: inline;
}

<h1 id="indexpage">Widgets.com</h1> <p>is the best place to buy widgets. Blah, blah blah...</p>


For most browsers, IE as well:

h1.indexpage {
font: bold 16px verdana;
}
.indexpage {
display: inline;
}

<h1 class="indexpage">Widgets.com</h1> <p class="indexpage">is the best place to buy widgets. Blah, blah blah...</p>


Thread source:: http://www.webmasterworld.com/css/1704.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com