diff options
Diffstat (limited to 'public/index.html')
| -rw-r--r-- | public/index.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..02c5626 --- /dev/null +++ b/public/index.html @@ -0,0 +1,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> |
