angular/devtools/src/index.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
627 B
HTML
Raw Normal View History

<!doctype html>
2020-01-27 18:40:18 +00:00
<html lang="en">
<head>
<meta charset="utf-8" />
<title>AngularDevtools</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2021-05-01 01:11:45 +00:00
<link rel="icon" type="image/x-icon" href="assets/icon16.png" />
<link
rel="stylesheet"
href="/_main/third_party/fonts.google.com/material-symbols-outlined/outlined.css"
/>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div>
<app-root></app-root>
<other-app></other-app>
</div>
<script type="module" src="./bundle/main.js"></script>
</body>
2020-01-27 18:40:18 +00:00
</html>