-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (74 loc) · 2.05 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
I<html>
<head>
<title>حساب درجه الاعفاء العام</title>
<style>
/* Default styles for larger devices */
body {
font-family: Arial, sans-serif;
text-align: center;
}
input {
width: 100px;
margin: 10px;
}
button {
width: 200px;
height: 50px;
font-size: 20px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
p {
font-size: 30px;
color: #333;
}
/* Styles for smaller devices */
@media only screen and (max-width: 600px) {
input {
width: 80px;
}
p {
font-size: 20px;
}
}
</style>
</head>
<body>
<h1>حساب درجه الاعفاء العام</h1>
<input id="num1" type="number" placeholder="درجة الفصل الاول">
<input id="num2" type="number" placeholder="درجه النصف السنة">
<input id="num3" type="number" placeholder="توقع درجة الفصل الثاني !!!">
<button id="calc" onclick="calculate()">احسب</button>
<p id="result"></p>
<script>
function calculate() {
// get the input values
var num1 = Number(document.getElementById("num1").value);
var num2 = Number(document.getElementById("num2").value);
var num3 = Number(document.getElementById("num3").value);
// calculate the average
var avg = (num1 + num2 + num3) / 3;
// display the result
var result = document.getElementById("result");
if (avg >= 90) {
result.innerHTML = "سوف تنعفي اعفاء فردي!";
} else if (avg >= 75) {
result.innerHTML = "سوف تنعفي اعفاء عام!";
} else {
result.innerHTML = "ما راح تنعفي للاسف ;(";
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://github.io",
"@type": "WebSite",
"name": "حاسبه الاعفاء العام",
"alternateName": "حاسبة الاعفاء العام",
"url": "https://avrcal.github.io"
}
</script>
</body>
</html>