What are HTML tags?
- HTML tags are surrounded by the two characters"<", ">"
- HTML tags normally come in pairs like <a> and</a>
- HTML tags are use ti make-up HTML element
- HTML tags are not case sensitive, <b> means the same as <B>
Paragraph Tags
Tag: - <p> </p>[Has a closing tag] </> means closed.
What is Does: - Puts 2 breaks between lines of text.
Attributes: - Align="left", "right", "center"
Example: - <p align="left"> Left Paragraph</p>
<p align="right"> Right Paragraph</p>
<p align="center"> Center Paragraph</p>
Output: -
Left Paragraph
Right Paragraph
Center Paragraph
Practical:-
0 comments: