Initial commit

This commit is contained in:
Vojtěch Káně
2019-06-04 21:11:53 +02:00
commit 5f3ae55e51
3 changed files with 176 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<title>Makerfaire Pátek</title>
<style>
body {
background-color: blueviolet;
}
#buttons {
display: flex;
justify-content: space-around;
}
#buttons button {
min-width: 25vw;
min-height: 35vh;
border: none;
}
</style>
</head>
<body>
<h1>Makerfaire</h1>
<div id="buttons">
<a href="/vote?key=0"><button style="background-color: green"></button></a>
<a href="/vote?key=1"><button style="background-color: red"></button></a>
</div>
</body>
</html>