mirror of https://github.com/electron/electron
14 lines
318 B
HTML
14 lines
318 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Hello World!</title>
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
|
|
</head>
|
|
<body>
|
|
<h1>Connection status: <strong id='status'></strong></h1>
|
|
|
|
<script src="renderer.js"></script>
|
|
</body>
|
|
</html>
|