diff options
author | curly <curly@infernal.garden> | 2024-07-18 11:54:08 -0600 |
---|---|---|
committer | curly <curly@infernal.garden> | 2024-07-18 11:54:08 -0600 |
commit | 25bd00c21b4e389ebdbd487f0ecec8e9f2cf9fa3 (patch) | |
tree | fdeaaed284e639a5eb18f6041ed226aa9e9b337f /src/index.html | |
parent | bb7cff0016a1bb95bd987b69b586c505418c1aeb (diff) | |
download | poko_web-25bd00c21b4e389ebdbd487f0ecec8e9f2cf9fa3.tar.gz poko_web-25bd00c21b4e389ebdbd487f0ecec8e9f2cf9fa3.tar.bz2 poko_web-25bd00c21b4e389ebdbd487f0ecec8e9f2cf9fa3.zip |
use html base and relative paths
Diffstat (limited to 'src/index.html')
-rw-r--r-- | src/index.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/index.html b/src/index.html index 9a38dca..cadf558 100644 --- a/src/index.html +++ b/src/index.html @@ -1,8 +1,10 @@ <!DOCTYPE html> <head> + <base href="/" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link rel="stylesheet" href="/main.css"> - <script src="/main.js" defer></script> + <link rel="stylesheet" href="main.css"> + <script src="main.js" defer></script> + <link rel="icon" href="favicon.svg" type="image/svg"> <title>POKO</title> </head> <body> |