-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·27 lines (21 loc) · 884 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!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'; style-src 'self' 'unsafe-inline'">
<link href="./styles.css" rel="stylesheet">
<title>Website Previewer</title>
</head>
<body>
<div class="content">
<h2>Website Previewer</h2>
https://<input type="text" value="github.com" id="url">
<input type="submit" id="submit" value="Preview">
<br>
<small>powered by Electron <span id="electron-version"></span> | Sourcecode on <a href="https://github.com/Mario-Greiner/WebsitePreviewer" target="_blank">GitHub</a></small>
</div>
<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
</body>
</html>