website-to-remarkable/success.html

37 lines
701 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='manifest' href='/manifest.json'>
<title>Website to reMarkable</title>
<style>
* {
box-sizing: border-box;
}
body {
font-size: 2em;
display: flex;
flex-direction: column;
justify-content: center;
height: 100vh;
margin: 0;
padding: 0;
text-align: center;
background-color: #e54655;
}
img {
width: max-content;
max-width: 100%;
margin: 0 auto;
}
</style>
</head>
<body>
<img src="rocket.png" />
<h2>Sent to reMarkable</h2>
</body>
</html>