mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
23 lines
593 B
HTML
23 lines
593 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>AngularDevtools</title>
|
|
<base href="/" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" type="image/x-icon" href="assets/icon16.png" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="../third_party/fonts.google.com/material-symbols-outlined/outlined.css"
|
|
/>
|
|
|
|
<link rel="stylesheet" href="./styles.css" />
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<app-root></app-root>
|
|
</div>
|
|
|
|
<script type="module" src="./bundle/main.js"></script>
|
|
</body>
|
|
</html>
|