Introduction to HTML
www.w3schools.com › html › html_introHTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content. HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
Basic Structure of HTML | Coding Manuals
www.codingmanuals.com › basic-structure-of-htmlBasic Structure of HTML. Posted in HTML Tutorials | Email This Post. Document Type <HTML> </HTML>. Title <TITLE> </TITLE>. Header <HEAD> </HEAD>. Body <BODY> </BODY>. • HTML document begins and ends with HTML tag i.e. <HTML> </HTML>. Here <HTML> indicates the browser that it is a HTML document and </HTML> tells the browser that HTML document is completed.