Files
electron/index.html
T

21 lines
471 B
HTML
Raw 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>
</body>
</html>