-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
30 lines (29 loc) · 1.26 KB
/
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
28
29
30
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Truthy | Truth tables made easy | Caleb Evans</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Generate truth tables effortlessly for any number of boolean expressions"
/>
<meta
http-equiv="Content-Security-Policy"
content="default-src 'none'; style-src 'self' data: https://fonts.googleapis.com 'unsafe-inline'; font-src 'self' data: https://fonts.gstatic.com; script-src 'self' https://gc.zgo.at; img-src 'self' data:; connect-src 'self' https://fonts.googleapis.com https://fonts.gstatic.com https://calebevans-projects.goatcounter.com/count; manifest-src 'self'"
/>
<link rel="shortcut icon" href="icons/favicon.png" />
<link rel="apple-touch-icon" href="icons/apple-touch-icon.png" sizes="180x180" />
<script
data-goatcounter="https://calebevans-projects.goatcounter.com/count"
async
src="https://gc.zgo.at/count.v4.js"
crossorigin="anonymous"
integrity="sha384-nRw6qfbWyJha9LhsOtSb2YJDyZdKvvCFh0fJYlkquSFjUxp9FVNugbfy8q1jdxI+"
></script>
</head>
<body>
<main></main>
<script type="module" src="scripts/index.js"></script>
</body>
</html>