Created
August 2, 2022 20:02
-
-
Save KenoLeon/2d12737c2a60921007ccc211087d398e to your computer and use it in GitHub Desktop.
Hello World_
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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