-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 816 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
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pierwsze koty za płoty</title>
<style>
.button
{
background-color: #b57614;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
border-radius: 4px;
}
.niebieskie {background-color: #008CBA;}
</style>
</head>
<body>
<h1>Początek</h1>
Używamy tu Node.js <span id="node-version"></span>,
Chromium <span id="chrome-version"></span>,
i Electron <span id="electron-version"></span>.
<hr/>
Testowanie przycisku<br/>
<button class="button" onclick="funruby()">Program w Ruby</button>
<p id="przyciskruby">Wynik przycisku</p>
<!-- Wczytujemy js, np. do poprawienia wyglądu -->
<script src="./renderer.js"></script>
</body>
</html>