diff options
author | Andinus <andinus@nand.sh> | 2021-10-09 18:33:40 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2021-10-09 18:33:40 +0530 |
commit | 28f2122ce73f197bf28d062f1e6c2bea366bf078 (patch) | |
tree | 09a8fbb20bfd1ab21170359e4acd543feac80840 /public/index.html | |
parent | 272dc0801973cd66733ea4f1b0fb7946fa3bb49c (diff) | |
download | dorado-28f2122ce73f197bf28d062f1e6c2bea366bf078.tar.gz |
Initialize Application
Diffstat (limited to 'public/index.html')
-rw-r--r-- | public/index.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..526a8cd --- /dev/null +++ b/public/index.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset='utf-8'> + <meta name='viewport' content='width=device-width,initial-scale=1'> + + <title>CG Algorithms</title> + + <link rel='icon' type='image/png' href='./favicon.png'> + <link rel='stylesheet' href='./global.css'> + <link rel='stylesheet' href='./build/bundle.css'> + + <script defer src='./build/bundle.js'></script> + </head> + + <body> + </body> +</html> |