2021-12-28 23:49:18 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>{{ TITLE }}</title>
|
2021-12-29 19:22:38 +01:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;700&display=swap" rel="stylesheet">
|
2021-12-28 23:49:18 +01:00
|
|
|
<link rel="stylesheet" href="/static/css/main.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
2021-12-29 19:22:38 +01:00
|
|
|
<header>
|
|
|
|
<h1>Poll.horse</h1>
|
|
|
|
<h3>Make voting on things simpler</h3>
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<section class="notepad">
|
|
|
|
<div class="notepad-border"></div>
|
|
|
|
<section class="poll-title">
|
|
|
|
<input type="text" maxlength="300" placeholder="Enter your question here">
|
|
|
|
</section>
|
|
|
|
<section class="poll-options">
|
|
|
|
<div class="poll-option">
|
|
|
|
<input type="text" maxlength="300" placeholder="Enter your option here">
|
|
|
|
</div>
|
|
|
|
<div class="poll-option">
|
|
|
|
<input type="text" maxlength="300" placeholder="Enter your option here">
|
|
|
|
</div>
|
|
|
|
<div class="poll-option">
|
|
|
|
<input type="text" maxlength="300" placeholder="Enter your option here">
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section class="poll-footer"></section>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
|
|
<ul>
|
|
|
|
<li><a href="" target="_blank">Test</a></li>
|
|
|
|
<li><a href="" target="_blank">Test</a></li>
|
|
|
|
<li><a href="" target="_blank">Test</a></li>
|
|
|
|
<li><a href="" target="_blank">Test</a></li>
|
|
|
|
</ul>
|
|
|
|
<div class="copyright">© 2021 Wolvan</div>
|
|
|
|
</footer>
|
2021-12-28 23:49:18 +01:00
|
|
|
</body>
|
|
|
|
</html>
|