Middle
Which tags are prohibited in HTML5?
sobes.tech AI
Answer from AI
In HTML5, the tags are not so much forbidden as deprecated or discouraged. Browsers may support them for backward compatibility, but their use is undesirable due to semantic incorrectness, accessibility issues, or preference for CSS styling.
The most common deprecated tags:
<acronym><applet><basefont><big><center><dir><font><frame><frameset><isindex><noframes><strike><tt>
It is important to understand that deprecated tags are not "forbidden" in the sense that their use will completely break the page or cause a parsing error. Nevertheless, they should be avoided in new code in favor of semantically correct tags and CSS for styling.