-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 957 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<link href="src/style.css" rel="stylesheet">
</head>
<body>
<h1>Github.com/Cicowscy/cisgen -> Grono-Teka.Cisowscy.com</h1>
<img src="src/GRONO-TEKA_logo.webp" alt="Logo CisGen" style="width:600px;height:600px;">
<div>
<!-- All of the Node.js APIs are available in this renderer process. -->
<h3>We are using Node.js
<script>
document.write(process.versions.node)
</script>,
</h3>
<h3>Chromium
<script>
document.write(process.versions.chrome)
</script>, and
</h3>
<h3>Electron
<script>
document.write(process.versions.electron)
</script>.</h3>
</div>
</body>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</html>