diff options
author | Kyle Gunger <corechg@gmail.com> | 2020-02-28 13:07:34 -0500 |
---|---|---|
committer | Kyle Gunger <corechg@gmail.com> | 2020-02-28 13:07:34 -0500 |
commit | e5515d3e1603339b4957421c9494ca619490a03d (patch) | |
tree | 94d5ea494c57f996debdb205711b2c16cda32880 /client.html | |
parent | ab88ba8d0e23999f4d55a2721f610eff2b1d2054 (diff) |
A few "quality of life" things
+ icons for all pages
+ titles for pages
Diffstat (limited to 'client.html')
-rw-r--r-- | client.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/client.html b/client.html index b48e54c..e7d6153 100644 --- a/client.html +++ b/client.html @@ -12,12 +12,20 @@ <link rel="stylesheet" type="text/css" href="styles/client/desktop.css"> <link rel="stylesheet" type="text/css" href="styles/client/tablet.css"> <link rel="stylesheet" type="text/css" href="styles/client/mobile.css"> + + <link rel="icon" sizes="32x32" href="images/wc-icon-32.png"> + <link rel="icon" sizes="48x48" href="images/wc-icon-48.png"> + <link rel="icon" sizes="96x96" href="images/wc-icon-96.png"> + <link rel="icon" sizes="144x144" href="images/wc-icon-144.png"> + <link rel="icon" sizes="288x288" href="images/wc-icon-288.png"> <script src="scripts/message.js"></script> <script src="scripts/sock.js"></script> <script src="scripts/lobby.js"></script> <script src="scripts/table.js"></script> <script src="scripts/client.js"></script> + + <title>WebCards - Client</title> </head> <body> |