forked from toddmotto/angular-dynamic-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 740 Bytes
/
index.html
File metadata and controls
33 lines (32 loc) · 740 Bytes
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
<!doctype html>
<html>
<head>
<base href="/">
<meta charset="UTF-8">
<title>Example</title>
<style type="text/css">
* {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
font: 300 16px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
background: #e7e7e7;
-webkit-font-smoothing: antialiased;
color: #545e6f;
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<app-root></app-root>
<script src="build/vendor.js"></script>
<script src="build/app.js"></script>
</body>
</html>