-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (32 loc) · 986 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.png" />
<link rel="shortcut icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
<title>OpenHaus</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
html,
body,
#app {
height: 100%;
width: 100%;
min-height: 100%;
min-height: 100%;
max-height: 100%;
max-width: 100%;
margin: 0;
padding: 0;
overflow: hidden !important;
}
</style>
</head>
<body>
<div id="app" class="gardien-background"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>