mirror of https://github.com/electron/electron
15 lines
412 B
HTML
15 lines
412 B
HTML
<!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'">
|
|
<title>Hello World!</title>
|
|
</head>
|
|
<body>
|
|
Title: <input id="title"/>
|
|
<button id="btn" type="button">Set</button>
|
|
<script src="./renderer.js"></script>
|
|
</body>
|
|
</html>
|