Web Designing Question:
How many HTML tags are used for the most simple of web pages?

Answer:
8 total. 4 pairs of tags.
<HTML>
<HEAD>
<TITLE>Simplest page!</TITLE>
</HEAD>
<BODY>
Doesn't get simpler more than this.
</BODY>
</HTML>
<HTML>
<HEAD>
<TITLE>Simplest page!</TITLE>
</HEAD>
<BODY>
Doesn't get simpler more than this.
</BODY>
</HTML>
Previous Question | Next Question |
When serving XHTML pages what are the limitations? | How to make comments without text being picked up by the browser? |