By titles I mean at the top of alot of website that have little quick links like "Home" "About" "What's New?". How should I handle those? I'm sure I could do something like this:
html Code:
<head> <h1>Home | About | What's New?</h1></head>
Printable View
By titles I mean at the top of alot of website that have little quick links like "Home" "About" "What's New?". How should I handle those? I'm sure I could do something like this:
html Code:
<head> <h1>Home | About | What's New?</h1></head>
<h1> and anything appears on the page should be inside the body tag, after head
For links that align side by side, most people use an unordered list.
Then you'll want to add the css to the list to make it appear properlyCode:<ul id="navigation">
<li><a href="">Link 1</a></li>
<li><a href="">Link 2</a></li>
<li><a href="">Link 3</a></li>
<li><a href="">Link 4</a></li>
</ul>
This is untested, but should work. You'll also want to add padding, and if you want the bar inbetween items, you'll need to use a border.Code:#navigation li
{
display: inline;
list-style-type: none;
}
Thank you, I guess I just assumed they belong in the <head> tags.Quote:
<h1> and anything appears on the page should be inside the body tag, after head
I had no idea about unordered list, thanks for that example! As for the CSS, I'm trying to use just HTML for now to get a basic understanding.Quote:
For links that align side by side, most people use an unordered list.
@tr333, Thank you for your input as well