mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit standardizes the doctype declaration across all HTML files in the project to use `<!DOCTYPE html>` PR Close #51052
14 lines
345 B
HTML
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>
|