forked from meetdave3/angular-node-typescript-boiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·30 lines (24 loc) · 802 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MyApp</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="icon" type="image/x-icon" href="/assets/angular.png">
<link rel="manifest" href="/manifest.json">
<meta name="mobile-web-app" content="yes">
<meta name="theme-color" content="#f48c5b">
</head>
<body>
<app-root>
<img src="../assets/angular.png" alt="AngularLogo" style="width:50px;
height:50px;
position: fixed;top: 50%;
left: 50%;
transform: translate(-50%, -50%);">
</app-root>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>