Category: HTML

HTML Headings

HTML Headings HTML defines six elements of headings. The headings are H1, H2, H3, H4, H5, and H6. The H1 is the largest and most important, and H6 is the smallest or least important. The size of a heading can be...

HTML Paragraph

HTML Paragraph The HTML <p> tag defines a paragraph. If you insert space inside HTML paragraph the browser will remove any extra spaces and extra lines when the html page is displayed. HTML Paragraph <!DOCTYPE html> <html> <head> HTML Paragraph </head>...

HTML Formatting

HTML Formatting The HTML can have the following elements for formatting: The <b> tag is used to bold text. The <i> tag is used to make italic text. The <strong> tag defines important text. The <mark> tag is used to mark...

HTML Basic Tags

HTML Basic Tags The <!DOCTYPE html> tag defines document version. The <html> tag represents the root tag of an HTML page. The <head> tag defines meta information about the html page. The <title> tag specifies a title for the html page....