WEEK TWO: MAKEING THE WORDS LOOK GOOD
OK YOU SHOULD NOW HAVE SOMETHING ABOUT LIKE THIS BELOW IN YOUR HTML CODEING
<html>
<head>
<title>MY PAGE</title>
</head>
<body>
THIS IS MY PAGE
AND THIS IS WHERE I WRITE WHAT I WANT ABOUT MYSELF
</body >
</html>
Which comes out looking like this:
this is my page and this is where i write about me
ok thats nice but everything is sorta pressed all togeather aint it?compaired to the way you wrote it in the html code
you want it to set it up so you can have it readable expecially if your going to type a lot of stuff :)
there are two ways to do that
1st is <br> which puts a break there at that point and you have to use that after every line where you want to use a return
the other way is <P> which make a paragraph with a space between lines :)
using both of these togeather will let you have all your words not ran togeather and looking good
the last bit you need for getting the spacing and stuff right on your page is & nbsp; ( there is no space between the & and the n)
that makes a space for every one you put in there
like a space bar, you dont need it most of the time but sometimes you want a space between things like your gifs and stuff, then its important to have that there :)
now for some bits that make the letters look good
<b>and </b> makes the words, letters numbers and so forth in between them bold just like the lettering and symbols i just used :)
<i>and </i > makes ittlalics just like this :)
and last but not least is the <u>and </u>that makes things underlined just like this :)