diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-21 02:49:46 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-21 02:49:46 +0200 |
| commit | e05904f2e992ce3184952a8e569d9c28d85d68de (patch) | |
| tree | 50c4af17d282384be4cc34a0adfc6dc823fc3261 /public/index.html | |
| parent | 135fde231646f8f8838cdf16ddb0bc3ad2e94d3a (diff) | |
basic css for form elements
Diffstat (limited to 'public/index.html')
| -rw-r--r-- | public/index.html | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/public/index.html b/public/index.html index 04817a1..c2bac46 100644 --- a/public/index.html +++ b/public/index.html @@ -1,21 +1,23 @@ <!doctype html> -<html lang="en" class="loading"> +<html lang='en' class='loading'> <head> <title> live.cortex </title> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> - <link rel="stylesheet" href="/assets/css/css.css"> + <meta charset='utf-8'> + <meta name='viewport' content='width=device-width, initial-scale=1.0, user-scalable=yes' /> + <meta http-equiv='Content-Type' content='text/html; charset=utf-8'> + <link rel='stylesheet' href='/assets/css/css.css'> </head> + <body> - <div id="container"></div> + <div id='container'></div> </body> -<script src="/socket.io/socket.io.js"></script> + +<script src='/socket.io/socket.io.js'></script> <script> var s = document.createElement('script'); - s.setAttribute('src','assets/js/app.js?' + Date.now()); + s.setAttribute('src','bundle.js?' + Date.now()); document.body.appendChild(s) </script> </html>
\ No newline at end of file |
