mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
de777afbc5
This commit standardizes the doctype declaration across all HTML files in the project to use `<!DOCTYPE html>` PR Close #51052
19 lines
345 B
HTML
19 lines
345 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Hello World</title>
|
|
<base href="/">
|
|
</head>
|
|
|
|
<body>
|
|
<input type="text">
|
|
<hello-world-el></hello-world-el>
|
|
<hello-world-onpush-el></hello-world-onpush-el>
|
|
<hello-world-shadow-el></hello-world-shadow-el>
|
|
<script src="dist/bundle.js"></script>
|
|
</body>
|
|
|
|
</html>
|