-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
68 lines (55 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title >Percentage Calculator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<span >
<h1 class="main title">Exam Marks Percentage Calculator</h1>
</span>
<div class="main card">
<label class="title" for="subjects">Number Of Subjects</label>
<br>
<br>
<div class="title">
<input type="text" id="subjects" placeholder="Enter number of Subjects">
</div>
<br>
<div class="title">
<button id="subject_enter" onclick="func1();this.disabled=true" type="submit">Enter</button>
</div>
<!-- // <button id="edit" onclick="subject_enter.enabled=true"></button> -->
<div class="btnn" id="boxes">
<!-- <label for="marks">Enter marks for 5 Subjects</label>
<br>
<br>
<div id="marks">
<input type="text" id="mark1" placeholder="Enter marks for subject 1">
<br>
<br>
<input type="text" id="mark2" placeholder="Enter marks for subject 2">
<br>
<br>
<input type="text" id="mark3" placeholder="Enter marks for subject 3">
<br>
<br>
<input type="text" id="mark4" placeholder="Enter marks for subject 4">
<br>
<br>
<input type="text" id="mark5" placeholder="Enter marks for subject 5">
</div>
<br>
-->
<br>
</div>
<button id="calculate">Calculate</button>
<p id="outputLabel"></p>
<p id="output"></p>
</div>
<script src="calc.js"></script>
</body>
</html>