diff options
author | Linus Lee <linus@thesephist.com> | 2020-09-24 05:45:33 -0400 |
---|---|---|
committer | Linus Lee <linus@thesephist.com> | 2020-09-24 05:45:33 -0400 |
commit | 030094045aa127e1e2a3800624c6a3e45c4c8c90 (patch) | |
tree | bea4c989bcb3e8312f765ccf4f9a1751c0b3cd6e /static/index.html | |
parent | c79c0e4fec62e535732fff69fc216a0f31f95566 (diff) | |
download | tabloid-fake-closure-030094045aa127e1e2a3800624c6a3e45c4c8c90.tar.gz tabloid-fake-closure-030094045aa127e1e2a3800624c6a3e45c4c8c90.zip |
Begin working on web app
Diffstat (limited to 'static/index.html')
-rw-r--r-- | static/index.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..c62e1e8 --- /dev/null +++ b/static/index.html @@ -0,0 +1,15 @@ +<!doctype html> + +<meta charset="utf-8"> +<title>Tabloid: the clickbait headline programming language</title> +<meta name="viewport" content="width=device-width,initial-scale=1"> +<link href="https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;700&display=swap" rel="stylesheet"> +<link rel="stylesheet" href="/css/blocks.min.css"> +<link rel="stylesheet" href="/css/main.css"> + +<body> + <noscript>Oops, please turn on JavaScript to enjoy Tabloid :)</noscript> + <script src="/js/torus.min.js"></script> + <script src="/js/lang.js"></script> + <script src="/js/main.js"></script> +</body> |