aboutsummaryrefslogtreecommitdiff
path: root/public/index.html
blob: 02c56269ae425634647af48af1fde9bc2b1f4abb (plain)
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
30
<!doctype html>
<html lang="fr">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Word</title>
<link rel="stylesheet" href="/main.css">
<link rel="icon" href="/icon.png">

<body>
    <div class="g-CardsPage">
        <div class="g-Score">Score : 0</div>
        <div class="g-Cards">
            <button>1</button>
            <button>2</button>
            <button>3</button>
            <button>4</button>
            <button>5</button>
        </div>
    </div>

    <div class="g-WordPage">
        <div class="g-Word"></div>
        <div class="g-Buttons">
            <button class="g-Good"></button>
            <button class="g-Bad"></button>
        </div>
    </div>
</body>

<script src="/main.js"></script>