aboutsummaryrefslogtreecommitdiff
path: root/mottovote/public/index.html
diff options
context:
space:
mode:
authorMarvin Borner2020-10-03 12:38:49 +0200
committerMarvin Borner2020-10-03 12:40:04 +0200
commit0fd8f61362403934550b360cbd65f1b41d66c870 (patch)
tree55e409e4a3a39808b79ae948a69c6128919caafd /mottovote/public/index.html
parentd1944deec3dcd2154f8bb80dc5099cdcc8963e0d (diff)
Fixed frontend
Diffstat (limited to 'mottovote/public/index.html')
-rw-r--r--mottovote/public/index.html39
1 files changed, 20 insertions, 19 deletions
diff --git a/mottovote/public/index.html b/mottovote/public/index.html
index 4e64cb8..0bffbdd 100644
--- a/mottovote/public/index.html
+++ b/mottovote/public/index.html
@@ -1,23 +1,24 @@
<!DOCTYPE html>
<html lang="en">
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>Motto Vote</title>
+ <link
+ rel="stylesheet"
+ href="https://unpkg.com/purecss@2.0.3/build/pure-min.css"
+ integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ"
+ crossorigin="anonymous"
+ />
+ <link rel="stylesheet" href="style.css" type="text/css" media="all" />
+ </head>
-<head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Motto Vote</title>
- <link rel="stylesheet" href="https://unpkg.com/purecss@2.0.3/build/pure-min.css"
- integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" crossorigin="anonymous" />
- <link rel="stylesheet" href="style.css" type="text/css" media="all" />
-</head>
+ <body>
+ <main>
+ <div id="vote"></div>
+ <button class="pure-button pure-button-primary" id="voteButton">Vote!</button>
+ </main>
-<body>
-
- <main>
- <div id="vote"></div>
- <button class="pure-button pure-button-primary" id="voteButton">Vote!</button>
- </main>
-
- <script src="script.js"></script>
-</body>
-
-</html> \ No newline at end of file
+ <script src="script.js"></script>
+ </body>
+</html>