Files

23 lines
531 B
HTML
Raw Permalink Normal View History

2025-10-30 08:37:45 +08:00
<!DOCTYPE html>
<html>
<head>
<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'"
/>
<meta
http-equiv="X-Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<title>Hello Wonder</title>
</head>
<body>
<h1>Hello Electron</h1>
<p>👋</p>
2025-10-30 08:55:54 +08:00
<p id="info"></p>
2025-10-30 08:37:45 +08:00
</body>
2025-10-30 08:55:54 +08:00
<script src="renderer.js"></script>
2025-10-30 08:37:45 +08:00
</html>