angular/modules/playground/src/todo/index.html
Mateusz Daniluk de777afbc5 refactor: standardize doctype declaration to <!DOCTYPE html> (#51052)
This commit standardizes the doctype declaration across all HTML files in the project to use `<!DOCTYPE html>`

PR Close #51052
2024-02-01 19:29:46 +00:00

14 lines
345 B
HTML

<!DOCTYPE html>
<base>
<title>Todo Angular</title>
<link rel="stylesheet" href="css/main.css" media="screen" title="no title" charset="utf-8">
<base href="./">
<body>
<todo-app>
Loading...
</todo-app>
<script src="/angular/packages/zone.js/bundles/zone.umd.js"></script>
<script src="/app_bundle.js"></script>
</body>
</html>