mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
28 lines
438 B
HTML
28 lines
438 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>404</title>
|
||
|
<style>
|
||
|
*{
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
img{
|
||
|
display: block;
|
||
|
}
|
||
|
html, body{
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
img{
|
||
|
display: block;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<img src="./images/404.png" alt="">
|
||
|
</body>
|
||
|
</html>
|