Posts

HTML TAG LIST

HTML Tag Explanation Example Key Points to Remember <html> Root element of an HTML document. <html>...</html> Always the outermost tag in the document. <head> Contains metadata and links to stylesheets or scripts. <head><title>Page Title</title></head> Placed inside <html> and before <body>. <title> Defines the title of the document shown in the browser tab. <title>My Page</title> Should always be unique for SEO and usability. <body> Contains the main content of the HTML document. <body>Content here</body> Only one <body> tag is allowed per document. <h1> to <h6> Define headings, <h1> being the largest and <h6> the sm...
Recent posts