poll.horse/frontend/html/index.html
2021-12-29 19:22:38 +01:00

47 lines
No EOL
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ TITLE }}</title>
<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">
<link rel="stylesheet" href="/static/css/main.css">
</head>
<body>
<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>
</body>
</html>