Posts

Showing posts from July, 2020

The Basic Template Of Any HTML File | Day 3

THE BASIC HTML FILE SHOULD HAVE FOLLOWING CONTENTS  <!doctype html> <html lang = "en"> <head>     <meta charset = "utf-8">     <meta name ="viewport" content="width=device-width, initial-scale = 1">     <meta name ="author" content="What,When & How is HTML?>     <meta name ="description" content="It should 155 characters long">     <title>What, When & How Is HTML? </title> </head> <body> </body> </html>