diff options
author | Lars Krönner | 2020-10-03 12:22:37 +0200 |
---|---|---|
committer | GitHub | 2020-10-03 12:22:37 +0200 |
commit | 3985c6f3e179a1d8870eb21176a12b52a9749256 (patch) | |
tree | 398977d71b07f67ff44f77a5b62057f51744c938 /mottovote/public/index.html | |
parent | 148a9a5a63ed3e73d0a8709e7972fd1b1586c5b8 (diff) | |
parent | e5a757786f632ef15aae7f4010e120d5479b869b (diff) |
Merge pull request #3 from marvinborner/motto
Motto
Diffstat (limited to 'mottovote/public/index.html')
-rw-r--r-- | mottovote/public/index.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mottovote/public/index.html b/mottovote/public/index.html new file mode 100644 index 0000000..4e64cb8 --- /dev/null +++ b/mottovote/public/index.html @@ -0,0 +1,23 @@ +<!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> + +<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 |