Compare commits

...

6 commits

Author SHA1 Message Date
b84b797cd6
hi 2025-03-28 10:15:28 -04:00
ce66bd4ba6
try 3 2025-03-28 10:15:10 -04:00
c92cdfb3b3
try 2 2025-03-28 10:12:34 -04:00
56dcac3dcc
Add files via upload 2025-03-28 10:09:24 -04:00
91e73372b2
Delete assets/img/cookie-clicker_optimized.png 2025-03-28 10:09:06 -04:00
c35542b72e
try 2025-03-28 10:08:14 -04:00
3 changed files with 18 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

BIN
assets/img/new_favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -2,7 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<title>MilkNet</title> <title>MilkNet</title>
<link rel="icon" type="image/png" href="/assets/img/milk.png"/> <link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
<style>body{max-width:1000px;margin:auto;background-color:black;color:white;font-family:Arial;}a{color:#05d5ff}</style> <style>body{max-width:1000px;margin:auto;background-color:black;color:white;font-family:Arial;}a{color:#05d5ff}</style>
<style> <style>
img { img {
@ -32,6 +32,23 @@
}); });
}); });
</script> </script>
<script>
document.addEventListener('keydown', function(event) {
if (event.key === '.') {
// Change title
document.title = "Student and Parent Sign In";
// Change favicon
var favicon = document.getElementById('favicon');
var newFavicon = document.createElement('link');
newFavicon.id = 'favicon';
newFavicon.rel = 'icon';
newFavicon.href = 'new_favicon.ico';
favicon.parentNode.replaceChild(newFavicon, favicon);
}
});
</script>
</head> </head>
<body> <body>
<img src="/assets/img/milk_optimized.png" class="center"> <img src="/assets/img/milk_optimized.png" class="center">