HTML MADE EASY |
Html Made Easy now a book. For more info Click here |
| Free Graphics | Graphics Optimizer | Resources | Freeware | |
| JPEGCruncher Desktop | T-Shirts | |
|
HTML TUTORIAL
Introduction
Lesson1:Tags Lesson2:Paragraphs Lesson3:Attributes Lesson4:Lines Lesson5:Graphics Lesson6:Alignment Lesson7:Links Lesson8: Tables Lesson9: Frames HTML EXTRAS
Uploading Webpages
Quick Reference Color Chart Free Web Graphics Graphics Optimizer Resources Free Software
HTML MADE EASY
Html Made Easy is now a book! Don't spend money on books you won't understand,
The
Complete Html Made Easy takes you every step of the way in building a website,
and it makes it fun and easy too!
Did You Know
By learning HTML you will have better control over how your webpage will look than if you
use a software program to make one, not to mention it won't cost you any money because all you need is Notepad. Plus it's easier to learn too!
|
Lesson 2: ParagraphsA heading is no good if it doesn't have anything under it so let's put something down, shall we? To make a paragraph, start typing the text you want to appear on your web page. At the point where you want the paragraph to end put:
This is a single tag requiring no end tag, although in some situations it can be used as a beginning and end tag. The "P" stands for, you guessed it, paragraph. It makes the text that follow skip down two lines. Here's how it's used in our html example:
<HTML> <HEAD> <BODY> </HTML>
Here's how the web page would look:
Learning HtmlStep OneThe key in learning is practice. I know you can do it.So give it a try. See what's going on? The text that came after the <P> tag skipped down two lines. Remember what I said in the previous lesson about the heading not allowing other text to line up beside it? That's why the beginning line of text skipped down two lines even though there are no P tags after the heading tags.
|
|
Newsletter
![]()
Dog Magnets
![]() Tender Loving Hound
|
Give Me A Break Hitting the "Enter" key will have no effect on your web page. If you want to start a new line in a certain place within a paragraph, you need to use this tag:
It means "break". It is a single tag requiring no end tag and acts like the <P> tag except it skips one line instead of two.You don't need to use it at the end of each sentence in a paragraph, just use it if you want to start a new line in a particular place within a paragraph. Example:
The key to learning is practice.<BR> I know you can do it.<P>So give it a try.
The key to learning is practice. So give it a try.
The text that you want bold is enclosed between these tags like so:
Did you pick "guess"? Then you're doing alright. How about an underlined word like this? Use these tags:
What about italicized words? No problem, this is what to use:
You can use any or all combinations of these tags depending on the effect you want to have on your text:
The<I>key</I>in learning to make web pages is Notice how the words to be affected are enclosed in the beginning and end tags. See the slash in the end tags? Very important, don't forget them. Result: The key in learning to make web pages is practice. Understand? I hope so, otherwise I'm not doing a very good job. Try out the html tags you learned so far and come back for lesson 3. |