forked from zmandel/demosite_appscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage1.html
More file actions
38 lines (34 loc) · 919 Bytes
/
Copy pathpage1.html
File metadata and controls
38 lines (34 loc) · 919 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<style>
body {
margin: 20px;
margin-left: 0px;
background: #3c5979;
color: #DCDCDC;
font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
opacity: 0;
}
div {
margin-bottom: 16px;
padding: 12px;
border-radius: 6px;
}
</style>
</head>
<body>
<div>Section visible first</div>
<div id="bodyBottom" style="display:none;">
Section visible second
<br><br>
<button id="button1">Send analytics event</button>
<button id="buttonLogin">Login</button>
<button id="buttonLogout">Logout</button>
<link rel="stylesheet" href="../css/common.css" inline>
<script src="../js/util.js" inline></script>
<script src="../js/page1.js" inline></script>
</body>
</html>