HTML TAG'S
HTML TAG'S :- An HTML comment: • HTML <!--...--> Tag.. ๐๐ป๐๐ป๐๐ป <!-- This is a comment ..comments are not displayed in the browser--> <p>This is a paragraph.</p> • HTML <!DOCTYPE> Declaration.. The declaration is not an HTML tag .It is an "Information" to the browser about what document type to expect... <!DOCTYPE html> <html> <Head> <title>Title of the document</title> </Head> <body> The content of the document...... </body> </HTML> ...