TAG REFERENCES
THIS IS NOTEBOOK1
TAG REFERENCES
- In the next few examples I will demonstrate the following:
- br p center
strong em blockquote
hr u h
- The br reference means line break The <br> creates a line break with no extra space between two lines of text, much like hitting the return key on a word processor
- The <br> tag has no closing marks. THIS IS VERY IMPORTANT!!!
- Here is an example:
- I can type several type several lines.
this is my second line and I will use the br command again.
this my third line and I will use the br command again
- The p tag set is used to create a line break with an extra space between the two lines
- If you use the <P> tag after the <br> tag then there will only be one return. If it is placed before then there will be two "breaks"
- Important....If you need to do multiple line breaks use the <br> tag
- The <blockquote> and </blockquote> tag gives paragraphs a slight indentation
- Here is an example of a blockquote:
- blockquote will set apart the text between the tags by indenting it slightly. It is used stylistically, much like you see in articles and research papers when another author or reference is quoted.
The appearance is like an "indented" paragraph.
It does NOT require the use of the opening and closing <p> <p> tag set along with it.
- Here is a list of helpful html sites:
index
Notebook 2
Notebook 3