Posts

Showing posts with the label HTML Headings

HTML Tutorial for Beginners: Structure, Tags, Headings, Paragraphs, Links, Images, and Tables

What is HTML? HTML (HyperText Markup Language) is the standard language used to create and display content on web browsers. It was developed by the World Wide Web Consortium (W3C). HTML uses markup tags to define the structure and format of content. Each HTML element usually has a start tag and an end tag: <start-tag>Content</end-tag> 🔹 Basic Structure of an HTML Page <!DOCTYPE html> <html>   <head>     <title>Home Page</title>   </head>   <body>     <!-- Content goes here -->   </body> </html> Explanation : <!DOCTYPE html> → Informs the browser that this is an HTML5 document. <html> → Root element of an HTML page. <head> → Contains meta-information, title, and links to styles/scripts. <body> → Contains visible content like text, images, links, tables, etc. 🔹 Example 1: Displaying Text with Formatting <!DOCTYPE html> <html>   <hea...