diff options
Diffstat (limited to 'motto/public/index.html')
-rw-r--r-- | motto/public/index.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/motto/public/index.html b/motto/public/index.html new file mode 100644 index 0000000..5a9d698 --- /dev/null +++ b/motto/public/index.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width" /> + <link rel="stylesheet" href="style.css" type="text/css" media="all" /> + <title>Motto</title> + </head> + <body> + <div class="wrapper"> + <div class="cards"> + </div> + + <div class="yay_or_nay"> + <button id="nay"><img src="x.svg"></img></button> + <button id="yay"><img src="heart.svg"></img></button> + </div> + </div> + <script charset="utf-8" src="hammer.js"></script> + <script charset="utf-8" src="script.js"></script> + </body> +</html> |