How can you write a line of text with the first 2 words bold and the rest of the words in the line normal.
I tried wrapping the first 2 words in a h1 tag and the rest in h2, but the h2 part gets pushed down to another line when previewed. e.g. <h1>First words</h1><h2>the rest of the sentence</h2>
I tried wrapping the first 2 words in a h1 tag and the rest in h2, but the h2 part gets pushed down to another line when previewed.
e.g.
<h1>First words</h1><h2>the rest of the sentence</h2>
Thanks, Steve
<strong>hey</strong> hey
</body>
Maybe?
You may want to put all of your text in the h1 element, and then the part you want to be bigger in a span element.
ie:
Then in your css you could assign a class to that text, or just style all the span elements
span {font-size:25px;}EDIT:
Yeah, just re-read your post. If you want to bold your stuff, it would probably look like this:
<div id="heading">
<h1>first words</h1> <h2>Second words</h2>
</div>
then in the stylesheet do
#heading h1, h2 { display: inline; }
<h1 style="display:inline;">Bold text goes here</h1> <h2 style="display:inline;">normal text goes here</h2>
Steve
Of course you wouldn't use inline styling - but for purposes of illustration I have done so here.
If it isn't actually a header, then simply use <strong> tags as mentioned previously.