mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-02 16:25:00 +01:00
Update the built-in HTML sample snippet to follow current web standards and reduce unnecessary boilerplate: - Add lang attribute to <html> tag as first tab stop (W3C recommended) - Remove outdated IE compatibility meta tag (IE is no longer supported) - Remove unnecessary type='text/css' and media='screen' from <link> (default values in HTML5) - Remove <script> tag (modern templates often handle scripts differently) - Move viewport meta before title (following common convention) Fixes #272331 Co-authored-by: Raymond Zhao <7199958+rzhao271@users.noreply.github.com>