HTML Elements

HTML Element is main component for building web static

- HTML Elements example:
1 <tagname></tagname>
2 <html></html>
3 <br/> (there is no need start tag for br)

Start tag        Element content         End tag
 <html>     This is HTML element   </html>

- Nested HTML this mean this element contain other element

Example :
<html>
    <body>

        <h1> this is header </h1>
        <p> this is paragraph</p>

     </body>
</html>

Each HTML have start and end tag don't skip the tag except for special html like <br/>





Comments

Popular posts from this blog

HTML Attributes

Bug Heroes 2

CodeIgniter 4(part2)