-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (25 loc) · 975 Bytes
/
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
<html>
<body>
<script defer src="script.js"></script>
<h2>Study Bot</h2>
<button id="start">Start Test</button>
<select name="tense" id="tense">
<option value="present">Présent</option>
<option value="pc">Passé Composé</option>
<option value="imparfait">imparfait</option>
<option value="cond">Présent Conditionnel</option>
<!-- présent, passé composé, imparfait, conditionnel,
phrases avec si -->
</select>
<select name="type" id="type">
<!--<option value="exceptions">Exceptions</option>-->
<!--<option value="ias">In A Scentence</option>-->
<!--<option value="regular">Regular Verbs</option>-->
<option value="generalized">Generalized</option>
</select>
<br><br>
<div id="questions"></div>
<br><br>
<button id="Submit">Submit</button>
<div id="grade"></div>
</html>