-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.22 KB
/
index.html
File metadata and controls
42 lines (38 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Demo website containing Google Apps Script frames">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="theme-color" content="#000000">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192" href="/icon-192x192.png">
<style inline-source src="css/common.css"></style>
<title>Demo Website with Apps Script</title>
<style>
:root {
--primary-text-color: #DCDCDC;
--background-color: #000000;
}
html,
body {
margin: 1em;
font-family: 'Roboto', sans-serif;
-webkit-font-smoothing: antialiased;
color: var(--primary-text-color);
background-color: var(--background-color);
}
</style>
</head>
<body>
<h1>Demo Website with Apps Script</h1>
<div>
<button id="page1">Page 1</button>
<button id="page2">Page 2</button>
<button id="page3">Page 3</button>
</div>
</body>
<script type="module" src="/js/index.js"></script>
</html>