1
2
3 YOUR TITLE HERE
4
5
6
7 This is how you make text appear in an HTML document:
8
9 - Step 1: use p tag
10 - Write text
11 - close tag using /p
12
13
14 This is how you make text appear in an HTML document:
- Step 1: use p tag
- Write text
- close tag using /p
**this is the all in the same paragraph
15 href="http://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/Yes_check.svg/600px-Yes_check.svg.png">
Done!!!
16
17
**explantion**
1. The header on line one opens telling the computer this is an html document. Note that it is in <>. All HTML code uses these.
2. Line 2 refers to the header of your document. Line 3 uses title, which makes the words in the blue bar atop your browser whatever you put in between the title and /title commands. means the end of the information associated with that tag.
3. As just described: end of header.
4. Lines 6-* in this example constitute the body of the document. Everything between the body tags is what shows up in the browser.
**things you can use in your blogspace!!
5. is for paragraph: simply type between the tags. Note that HTML tags can be inside this one, like in line 14. You don't need to use this in your blog, because it is formatted to enter your text in this format, but style and design desires might make knowing this desirable.
6.