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
13 lines
327 B
HTML
13 lines
327 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>DI Resolution Modifiers Example</title>
|
|
<base href="/">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
</head>
|
|
<body>
|
|
<app-root>Loading...</app-root>
|
|
</body>
|
|
</html>
|