WHAT IS AN HTML ELEMENT ?

 An HTML elements is defined by a star tag , some content , and an end tag .

 < tagname > content goes here ..... < /tagname >

The HTML elements is everything from the start tag to the end tag : 

 < h1 > first heading < h 1>

 < p > my first paragraph < /p >

START  TAG         ELEMENT CONTENT       END TAG

< h1 >                        my first heading                     </h1>

<p>                              my first paragraph                 </p>

<br>                            none                                        none

                         


                 

No comments:

Post a Comment

SQL Server — Core Concepts with examples

  Data Definition Language (DDL) : CREATE , ALTER , DROP (tables, views, procedures, triggers). Data Manipulation Language (DML) : SELECT ,...

Best for you