mirror of
https://github.com/michivonah/website-v2.git
synced 2025-12-22 20:46:29 +01:00
Update 404.html
This commit is contained in:
parent
9040fbaa7c
commit
fd64e72313
1 changed files with 8 additions and 2 deletions
10
404.html
10
404.html
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-CH">
|
||||
<head>
|
||||
<title>Michi von Ah</title>
|
||||
<title>Not found - Michi von Ah</title>
|
||||
<meta name="mobile-web-app-title" content="Michi">
|
||||
<meta name="apple-mobile-web-app-title" content="Michi">
|
||||
<link id="favicon" rel="icon" type="image/png" href="assets/logo/favicon_256.png">
|
||||
|
|
@ -69,7 +69,7 @@
|
|||
<p>Try again!</p>
|
||||
</div>
|
||||
<div>
|
||||
<img src="assets/bitmoji.png">
|
||||
<img id="homeImg" src="assets/bitmoji.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -83,6 +83,12 @@
|
|||
document.getElementById('loadingScreen').style.display = "none";
|
||||
});
|
||||
|
||||
function randomHomeImg(){
|
||||
var homeImg = document.getElementById('homeImg');
|
||||
var num = Math.floor(Math.random() * (4 - 1) + 1);
|
||||
homeImg.src = "assets/bitmojis/error_" + num + ".png";
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue