-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (42 loc) · 1.84 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
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>اختبار جدول الضرب</title>
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" href="./calculator-fill.svg" type="image/x-icon">
</head>
<body>
<div class="container">
<h1 class="title">اختبار جدول الضرب</h1>
<div class="table-options">
<label for="multiplicationTable">أختر جدول</label>
<select id="multiplicationTable">
<option id="one" value="1">1</option>
<option id="two" value="2">2</option>
<option id="three" value="3">3</option>
<option id="four" value="4">4</option>
<option id="five" value="5">5</option>
<option id="six" value="6">6</option>
<option id="seven" value="7">7</option>
<option id="eight" value="8">8</option>
<option id="nine" value="9">9</option>
<option id="ten" value="10">10</option>
</select>
</div>
<div class="input">
<label for="user-input">الرقم المراد ضربه</label>
<input type="number" name="user-input" id="user-input"><br><br>
<label for="correct-input">ادخل الأجابة الصحيحة</label>
<input type="number" name="correct-input" id="correct-input">
</div>
<div class="results">
<h2 id="is-user-correct"></h2>
<h2 id="result">النتيجة: </h2>
</div>
<div class="button"><button type="submit" id="btn">ابدأ الاختبار</button></div>
</div>
<script src="./app.js"></script>
</body>
</html>