-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
24 lines (24 loc) · 898 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#000000">
<meta name="description" content="This tool is for discovering new CSS polygon shapes generated with css-doodle and mathematical functions">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<title>Discover CSS polygon shapes</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=PT+Mono&display=swap" rel="stylesheet">
</head>
<body>
<script>
(function() {
let theme = localStorage.getItem('theme');
if (theme) document.body.setAttribute('theme', theme);
}());
</script>
<div id="app"></div>
<script src="index.js"></script>
</body>
</html>