-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (46 loc) · 1.35 KB
/
index.html
File metadata and controls
52 lines (46 loc) · 1.35 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
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
<style>
.youguess button {
margin-top:10px;
border-style:solid;
border-color:#606060;
background:#404040;
color:#e0e0e0;
padding:10px 30px 10px 30px;
border-radius:6px;
cursor:pointer;
font-size:12pt;
}
.youguess button:hover, .youguess button:focus, .youguess button:active {
border-color:#606060;
color:#e0e0e0;
background:#606060;
}
.youguess button:disabled {
border-color:#606060;
color:#e0e0e0;
background:#606060;
opacity:0.5;
}
</style>
</head>
<body style="background:#ffffff">
<h1>DEMO #1</h1>
<div id="out1" style="margin-left:100px;width:400px;height:300px;"></div>
<h1>DEMO #2</h1>
<div id="out2" style="margin-left:100px;width:400px;height:300px;"></div>
<h1>DEMO #3</h1>
<div id="out3" style="margin-left:100px;width:600px;height:400px;"></div>
<h1>DEMO #4</h1>
<div id="out4" style="margin-left:100px;width:600px;height:400px;"></div>
<h1>DEMO #5</h1>
<div id="out5" style="margin-left:100px;width:600px;height:400px;"></div>
<h1>DEMO #6</h1>
<div id="out6" style="margin-left:100px"></div>
<br /><br /><br /><br /><br /><br /><br />
<script type="module" src="/src/project/demos.js"></script>
</body>
</html>