-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
37 lines (35 loc) · 875 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>
</head>
<body class="xd">
<!-- All of the Node.js APIs are available in this renderer process. -->
<h1>Look at your touchbar</h1>
<img id="xd" src="https://cdn.betterttv.net/emote/57719a9a6bdecd592c3ad59b/3x" alt="">
</body>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
<style>
h1 {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 24px;
font-style: normal;
font-variant: normal;
font-weight: 500;
line-height: 26.4px;
}
.xd {
text-align: center;
padding: 30px;
}
</style>
<script type="text/javascript">
window.playGachi = function(gachi) {
console.log(gachi);
};
</script>
</html>