⟩ Tell me how many HTML tags should be used for the most simplest of webpages?
It is one of the basic question from web designer interview questions.The simplest of webpages should contain 8 tags, in pairs of 4.
<html>
<head>
<title>
Simple webpage
</title>
</head>
<body>
Hello
</body>
</html>