-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·37 lines (37 loc) · 935 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!doctype html>
<html>
<head>
<base href="/">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Angular lazy loading feature modules</title>
<style type="text/css">
*, *:before, *:after {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
background: #eff4f9;
-webkit-font-smoothing: antialiased;
font: 300 16px/1.4 -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
color: #545e6f;
display: flex;
}
a {
text-decoration: none;
outline: 0;
}
</style>
</head>
<body>
<app-root></app-root>
<script src="build/vendor.js"></script>
<script src="build/app.js"></script>
</body>
</html>