TIPS AND TRICKS OF WEB DEVELOPMENT - Lesson 2

No comments    
categories: 
Summary: from the first lesson we deduce that HTML is the basics of Webpages and the Note Editor is used in writing HTML simple Structure.

Today we shall be looking at HTML TAGS & ELEMENTS
HTML uses tags in formatting its content, there are lots of this tag which can be use in formatting HTML content Eg.
<h1>Largest Heading</h1>
<h2> . . . </h2>
<h3> . . . </h3>
<h4> . . . </h4>
<h5> . . . </h5>
<h6>Smallest Heading</h6>

<p>This is a paragraph.</p>
<br> (line break)
<hr> (horizontal rule)
<!-- This is a comment -->
<abbr> (abbreviation)
<address> (contact information)
<bdo> (text direction)
<blockquote> (a section quoted from another source)
<cite> (title of a work)
<del> (deleted text)
<ins> (inserted text)
<sub> (subscripted text)
<sup> (superscripted text)
Note: Pls note the angular bracket, a tag must be writing within this angular bracket else it won’t respond.

HTML ELEMENTS
Elements are entities specifying how HTML documents should be built, and what kind of content should be placed in what part of an HTML document. Eg
<noscript>
<address>
<footer>
<header>
<nav>
<main>

Also Note that this element has an attribute that can be associated with them.


Thanks for Reading see you in the next Lesson

0 comments:

Post a Comment