aboutsummaryrefslogtreecommitdiff
path: root/motto/public/index.html
blob: 100b2af74714ec3965e4f75b65453822cb07e3e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!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="fab">
        <button id="add" class="add_button"><img src="add.svg"></img></button>
      </div>

      <div class="yay_or_nay fab">
        <button id="nay"><img src="x.svg"></img></button>
        <button id="hmm"><img src="skip.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>