HTML Headings
- HTML headings are defined with the <h1>to<h6>tags.
- <h1>defines the most important heading.- <h6>defines the least important heading
                        <h1> This is heading 1 </h1>
                        <h2> This is heading 2 </h2>
                        <h3> This is heading 3 </h3>
                        <h4> This is heading 4 </h4>
                        <h5> This is heading 5 </h5>
                        <h6> This is heading 6 </h6>
                      
                    HTML Paragraphs
- The <p>tag represents the paragraphs in an HTML document.
                        <p> This is a exmaple of paragraph. </p>
                      
                    HTML Links
- Link is useful to go to another web page.
- ><a>is used to link web page. It is also called Ancher Tag.
- hrefattritube is path of destination web page
                        <a href="https://agwis.com"> This is a example of link. </a>
                      
                    HTML Images
- Images can be added to HTML document by <img>tag.
- srcattritube is path of image.
- altattritube is alternate text. If image could not be loaded than alternate text will be displayed.
- widthand- heightattritubes are width and height of image.
0 Comments