aboutsummaryrefslogtreecommitdiff
path: root/motto/index.html
blob: 3ef7fc2ed1b1e2ff235f9dea2b952b1605525b9b (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
28
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>