diff options
Diffstat (limited to 'mottovote/public/index.html')
-rw-r--r-- | mottovote/public/index.html | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/mottovote/public/index.html b/mottovote/public/index.html index 27ea837..4e64cb8 100644 --- a/mottovote/public/index.html +++ b/mottovote/public/index.html @@ -1,15 +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> - <div id="vote"></div> - <button id="voteButton">Vote!</button> + <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 |