diff options
Diffstat (limited to 'motto/index.html')
-rw-r--r-- | motto/index.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/motto/index.html b/motto/index.html new file mode 100644 index 0000000..3ef7fc2 --- /dev/null +++ b/motto/index.html @@ -0,0 +1,29 @@ +<!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 class="card"> + <img src="https://lorempixel.com/600/300/cats?1" alt=""/> + <h1>baum</h1> + </div> + <div class="card"> + <img src="https://lorempixel.com/600/300/cats?2" alt=""/> + </div> + </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> |