HTML CheatSheet Books

Sample program <!-- Sample program --> <!DOCTYPE html> <html> <head> <title>Hello World!</title> </head> <body> <h1>Hello World! </h1> <p> Good Morning!! </p> </body> </html> <!DOCTYPE html> : Specifies document type, here it is an HTML5 document <html> : root element of an HTML page <head> : Contains meta information about the HTML page <title> : Specifies a title for the HTML page to display <body> : body of the html document which contains headings, paragraphs, images, hyperlinks, tables, lists, etc....

March 1, 2023 · 5 min · The Unknown Developer