Skip to content

Commit

Permalink
Create 404.html
Browse files Browse the repository at this point in the history
udontur authored Mar 21, 2024
1 parent 9bc33f2 commit cd68111
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html>
<head>
<title>Clock</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap" rel="stylesheet">
<style>
body{
background-color: #181818;
font-family: "JetBrains Mono", monospace;
color: white;
font-size: 30px;
}
h1{
margin-top: 15%;
font-size: 100px;
}
button{
background-color: #ffffff;
font-family: "JetBrains Mono", monospace;
font-size: 30px;
color: #181818;
margin: 10px;
padding: 10px;
padding-left: 20px;
padding-right: 20px;
border-radius: 12px;
border: none;
font-weight: 600;
cursor: pointer;
transition-duration: 0.3s;
scale: 1.5;
}
button:hover{
background-color: #e0e0e0;
box-shadow: 3px 3px 3px #acacac;
}
</style>
</head>
<body>
<center><h1>404 Not found</h1></center>
<center><a href="https://udontur.github.io/"><button>Back</button></a></center>
<script>

</script>
</body>
</html>

0 comments on commit cd68111

Please sign in to comment.