0% found this document useful (0 votes)
12 views15 pages

HTML Basic Tags Overview

This document provides an overview of basic HTML tags used in web development, including heading tags, paragraph tags, line break tags, and others. It explains the purpose and usage of each tag along with examples, emphasizing the importance of proper syntax for rendering in browsers. The document concludes with a reference link for further reading on HTML basics.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views15 pages

HTML Basic Tags Overview

This document provides an overview of basic HTML tags used in web development, including heading tags, paragraph tags, line break tags, and others. It explains the purpose and usage of each tag along with examples, emphasizing the importance of proper syntax for rendering in browsers. The document concludes with a reference link for further reading on HTML basics.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

WEB EVELOPMENT

HTML
BASIC
TAGS
Presentation by:
JULLIE ANN M. OCAMPO
HEADING TAGS
Any document starts with a heading.
HTML has six levels of headings, which use the elements <h1>,
<h2>, <h3>, <h4>, <h5>, and <h6>.
While displaying any heading, browser adds one line before and
one line after that heading.
EXAMPLE
PARAGRAPH TAG
The <p> tag offers a way to structure your text into different
paragraphs.
Each paragraph of text should go in between an opening <p> and
a closing </p> tag.
EXAMPLE
LINE BREAK TAG
Whenever you use the <br /> element, anything following it
starts from the next line.
This tag is an example of an empty element, where you do not
need opening and closing tags, as there is nothing to go in
between them.
The <br /> tag has a space between the characters br and the
forward slash. If you omit this space, older browsers will have
trouble rendering the line break, while if you miss the forward
slash character and just use <br> it is not valid in XHTML.
EXAMPLE
CENTER TAG
You can use <center> tag to
put any content in the center
of the page or any table cell.
HORIZONTAL LINE TAG
Horizontal lines are used to visually break-up sections of a document.
The <hr> tag creates a line from the current position in the document to
the right margin and breaks the line accordingly.
Again <hr /> tag is an example of the empty element, where you do not
need opening and closing tags, as there is nothing to go in between them.
The <hr /> element has a space between the characters hr and the forward
slash. If you omit this space, older browsers will have trouble rendering the
horizontal line, while if you miss the forward slash character and just use
<hr> it is not valid in XHTML
EXAMPLE
PRESERVE FORMATTING TAG
If you want your text to follow the exact format of how it is
written in the HTML document, you can use the preformatted
tag <pre>.
Any text between the opening <pre> tag and the closing </pre>
tag will preserve the formatting of the source document.
EXAMPLE
NONBREAKING SPACES
If you do not want the client browser to break text, you should use a
nonbreaking space entity &nbsp; instead of a normal space.
REFERENCE
HTML. (n.d.). Retrieved from
[Link]
m/html/html_basic_tags.htm
THANK'S FOR
LISTENING

You might also like