Skip to content

Instantly share code, notes, and snippets.

@KenoLeon
Created August 2, 2022 20:02
Show Gist options
  • Select an option

  • Save KenoLeon/2d12737c2a60921007ccc211087d398e to your computer and use it in GitHub Desktop.

Select an option

Save KenoLeon/2d12737c2a60921007ccc211087d398e to your computer and use it in GitHub Desktop.
Hello World_
<!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 World in Electron</title>
</head>
<body>
<h1>Hello World</h1>
<p>πŸ‘‹ πŸ‘‹ πŸ‘‹ πŸ‘‹ πŸ‘‹</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment