Files
hpos-desktop/electronjs/index.html

18 lines
471 B
HTML
Raw Permalink Normal View History

2023-08-05 20:50:01 +05:30
<!DOCTYPE html>
<html>
2023-08-05 21:07:23 +05:30
<head>
2023-08-05 20:50:01 +05:30
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>Hello World!</title>
2023-08-05 21:07:23 +05:30
</head>
<body>
2023-08-05 20:50:01 +05:30
<h1>Hello World!</h1>
We are using Node.js <span id="node-version"></span>,
Chromium <span id="chrome-version"></span>,
and Electron <span id="electron-version"></span>.
2023-08-05 21:07:23 +05:30
</body>
2023-08-05 20:50:01 +05:30
</html>