Pompeyo
Pompeyo

Reputation: 1469

Targeting HTML 5 in a 4.01 site version

Just wondering, what exactly could happen if a website isn't developed for HTML 5 (HTML 4.01 instead) but still it has declared all the standards like doctype and charset for HTML 5. like:

<!DOCTYPE html>
<meta charset="UTF-8">

Upvotes: 0

Views: 36

Answers (1)

Shane Hudson
Shane Hudson

Reputation: 719

HTML is written in such a way that it gracefully degrades instead of fatal erroring. There will be no issues, especially as the browsers implement all of the now deprecated tags anyway.

Upvotes: 2

Related Questions