-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 812 Bytes
/
index.html
File metadata and controls
40 lines (36 loc) · 812 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
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<title>Flems</title>
<meta charset="utf8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<style>
html {
height: 100%;
width: 100%;
margin: 0;
}
body {
display: block;
min-height: 100%;
width: 100%;
height: 100%;
margin: 0;
}
</style>
</head>
<body>
<script src="/flems.js" type="text/javascript" charset="utf-8"></script>
<script>
Flems(document.body, {
files: [{
name: '.html'
}, {
name: '.js'
}, {
name: '.css'
}]
})
</script>
</body>
</html>