-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
21 lines (19 loc) · 863 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!--index.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'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>ScriptKeep</title>
</head>
<body>
<h1>Hello World!</h1>
This is the beginning of ScriptKeep.<br>
ScriptKeep will be a place for anyone to keep anything they'd like to type. Kind of like a large, dynamic, text-only, clipboard.<br>
The biggest goal will be to add in useful context to help keep context (and also help beginning devs know their available options.).
<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
</body>
</html>