-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 880 Bytes
/
index.html
File metadata and controls
26 lines (25 loc) · 880 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<style media="screen" type="text/css">
#div_g { position: absolute; left: 200px; right: 50px; top: 100px; bottom: 50px; }
</style>
</head>
<body>
<h1>Hello World!</h1>
<!-- All of the Node.js APIs are available in this renderer process. -->
We are using node <script>document.write(process.versions.node)</script>,
Chromium <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
<h2>Testing stuff here</h2>
<div id="data">nothing</div>
<div id="div_g" ></div>
</body>
<script>window.$ = window.jQuery = require('jquery');</script>
<script>
// You can also require other files to run in this process
require('./js/projector.js')
</script>
</html>