Basics things about HTML
BASIC THINGS ABOUT HTML HTML Document Structure:- An HTML document consists of text, which comprises the content of the document, and tags, which define the structure and appearance of the document. The basic structure of an HTML document is simple with the entire document bound by a pair of <HTML> and </HTML> tags. <HTML> <HEAD> <TITLE> Title of page is written here</TITLE> </HEAD> <BODY> The HTML tags that define your page go here </BODY> </HTML> The <head>.....</head> tags make the header of the documen...