mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 08:04:49 +01:00
26 lines
489 B
HTML
26 lines
489 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<title>this is it</title>
|
||
|
<style>
|
||
|
html,
|
||
|
body {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
border: 0;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p
|
||
|
style="top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: x-large; position: fixed;"
|
||
|
>
|
||
|
This is it y'all, you found it!
|
||
|
</p>
|
||
|
</body>
|
||
|
</html>
|