The HTML code written on one machine can run on any machine without any extra software so we can say that HTML s platform independent.
HTML can be used to create web pages and hence web sits which is one of the most used source for marketing
<html>
<head>
<title>...</title>
</head>
<body>
statements you want to include on the browser
</body>
</html>
In Entry controlled loop the test condition is checked first and if that condition is true than the block of statement in the loop body will be executed while in exit controlled loop the body of loop will be executed first and at the end the test condition is checked,if condition is satisfied than body … Read more