This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (41 loc) · 1.81 KB
/
index.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ApprentissageAnimauxLangues</title>
<link rel="stylesheet" href="css/style.css">
<script type='module' src="src/Index.js"></script>
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico">
</head>
<body>
<header>
<h1 id="title">Uno</h1>
<!--Language dropdown selector is loaded by JS file on window load-->
<div class="selectors">
<!-- <label for="languageSelector">Language</label>-->
<!-- <select id="languageSelector">-->
<!-- <option value="en-US" selected>English</option>-->
<!-- <option value="fr-FR">Français</option>-->
<!-- <option value="de-DE">Deutsch</option>-->
<!-- <option value="it-IT">Italiano</option>-->
<!-- <option value="es-ES">Español</option>-->
<!-- </select>-->
</div>
<a href = "sentenceFind.html"><button id="MotHole">Phrases à trous</button></a>
<button id="playButton" class="stopped">Play</button>
</header>
<div class="imgContainer">
<div class="grid">
<img id="Cat" src="assets/img/CAT.png" alt="cat" draggable="false">
<img id="Chicken" src="assets/img/CHICKEN.png" alt="chicken" draggable="false">
<img id="Cow" src="assets/img/COW.png" alt="cow" draggable="false">
<img id="Dinosaur" src="assets/img/DINOSAUR.png" alt="dinosaur" draggable="false">
<img id="Dog" src="assets/img/DOG.png" alt="dog" draggable="false">
<img id="Frog" src="assets/img/FROG.png" alt="frog" draggable="false">
<img id="Goose" src="assets/img/GOOSE.png" alt="goose" draggable="false">
<img id="Horse" src="assets/img/HORSE.png" alt="horse" draggable="false">
<img id="Sheep" src="assets/img/SHEEP.png" alt="sheep" draggable="false">
</div>
</div>
</body>
</html>