+ 1
Why <html> tag is used to start the program? Also why </html> tag is used to end the program?
2 Answers
+ 3
That's the definition or format of html document file that developers need to follow to form html files
+ 1
The <html> tag tells the web browser to use the html markup rendering engine like the <script> tag tells the browser to use the JavaScript engine (v8, webkit) for its section. Example the <doctype> tags tells the browser that this a specific kind of html, like html5.