-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathshell.html
More file actions
53 lines (42 loc) · 1.15 KB
/
shell.html
File metadata and controls
53 lines (42 loc) · 1.15 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
`
<!DOCTYPE html>
<html>
<head>
<base href="/">
<title>{Title Here}}</title>
<style>
* {
margin: 0;
padding: 0;
}
html,
body {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.flex {
display: flex;
}
.flex-center {
align-content: center;
justify-content: center;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="favicon.ico" rel="shortcut icon">
<link rel="icon" type="image/jpg" href="meta/favicon-16x16.jpg" sizes="16x16">
<link rel="icon" type="image/jpg" href="meta/favicon-32x32.jpg" sizes="32x32">
<link rel="icon" type="image/jpg" href="meta/favicon-96x96.jpg" sizes="96x96">
<meta name="theme-color" content="#3c3c42">
<link rel="manifest" href="manifest.json">
</head>
<body>
<main class="flex flex-center">
<!-- Place Demo Code Here-->
</main>
<script src="js/register.js"></script>
</body>
</html>