diff options
| author | Joris Guyonvarch | 2026-01-01 13:35:18 +0100 |
|---|---|---|
| committer | Joris Guyonvarch | 2026-01-01 13:38:44 +0100 |
| commit | ec13d0861875320b3d8d7ddd350463f5cbab9dd9 (patch) | |
| tree | 69687628ef3cd9b08d150f62cfdc92abd8eb3d28 /public/index.html | |
| parent | b91c1efad83c626197fd81a48f984734f30f1b52 (diff) | |
Add init versionmain
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> |
