30 lines
734 B
HTML
30 lines
734 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Days since Tommy last drank Alcohol</title>
|
|
<meta name="description" content="Days since Tommy last drank Alcohol">
|
|
|
|
<style type="text/css">
|
|
html, body {height: 100%;}
|
|
body {text-align: center;}
|
|
#answer {
|
|
display: inline-block;
|
|
margin-top: 200px;
|
|
font-weight: bold;
|
|
font-size: 50pt;
|
|
font-family: Arial, sans-serif;
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="answer" target="_blank"></div>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js"></script>
|
|
<script type="text/javascript" src="/init.js"></script>
|
|
</body>
|
|
</html>
|