-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
38 lines (36 loc) · 1.13 KB
/
main.html
File metadata and controls
38 lines (36 loc) · 1.13 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-capable" content="yes" />
<meta http-equiv="Content-Security-Policy" content="script-src 'self';">
<title>DonichiDungeonR</title>
<link rel="stylesheet" type="text/css" href="display.css" />
<script src="include.js" type="text/javascript"></script>
<style>
* {
margin:0; padding:0;
}
.resizeimage * { width: 100%; }
.button1{
position: absolute;
top: 240px;
left: 220px;
font-size: 200%
}
</style>
</head>
<body>
<canvas id = "Layer0" oncontextmenu="return false;"></canvas>
<img src="content/asset/pict/TitleLogoTemp.png" style="display:none"><br />
<input type="button" class="button1" id="btn" value="GAME START">
<p id = "memo">
Electron app<br /><br />
We are using Node.js <span id="node-version"></span>,<br />
Chromium <span id="chrome-version"></span>,<br />
and Electron <span id="electron-version"></span>.
</p>
</body>
<script src="prepage_script.js" type="text/javascript"></script>
</html>