
HTML Part 1
What is HTML ? HTML stands for Hyper Text Markup Language. HTML 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. Example : <!DOCTYPE html> <html> <head> <title> Page Title </title> </head> <body> <h1> My First Heading </h1> <p> My first paragraph. </p> </body> </html> Tag Meaning <!DOCTYPE html> Tells browser it's HTML5 <html> Root element <head> Page info (not visible) <title> Title in browser tab <body> Visible content
Continue reading on Dev.to Tutorial
Opens in a new tab


