-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 990 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kanban Web App</title>
<!-- Favicon -->
<link rel="shortcut icon" href="/favicon.svg" type="image/x-icon">
<link rel="icon" href="./favicon.svg" type="image/x-icon">
<!-- CSS -->
<style>
body{
margin: 0;
padding: 0;
height: 100vh;
width: 100%;
}
iframe{
position: absolute;
height: 100vh;
width: 100vw;
border: none;
}
</style>
</head>
<body>
<!-- Cria um iframe para rodar a Web App criada no Google Apps Scripts -->
<iframe src="https://script.google.com/macros/s/AKfycbwH4x1Qfx16_PmtCG3um36CDfuXhS4C2CE4IU3gxOHW2veXD1YB_yluI52Z31MYdXCp/exec"></iframe>
</body>
</html>