24 lines
703 B
HTML
24 lines
703 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
|
|
<title>read quote</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="display hidden"></div>
|
|
<div class="instructions">
|
|
<p>{{ Hit Reload to see a new quote }}</p>
|
|
</div>
|
|
<div class="footer">
|
|
©<span id="jsyear"></span> Camille Frantz (<a href="https://github.com/fyrfli" target="_blank">@fyrfli</a>).
|
|
</div>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
|
|
</html> |