-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (32 loc) · 1.19 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
<!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" />
<link rel="stylesheet" href="style.css" />
<title>Student Grade Calculator</title>
</head>
<body>
<div class="container">
<h1>Student Grade Calculator (M.M : 100)</h1>
<forn class="input">
<input type="text" name="Maths" placeholder="Mathematics" id="maths" />
<input type="text" name="Phy" placeholder="Physics" id="phy" />
<input type="text" name="Che" placeholder="Chemistry" id="che" />
<input type="text" name="Eng" placeholder="English" id="eng" />
<input type="text" name="Hindi" placeholder="Hindi" id="hindi" />
<button type="submit" class="btn">Result</button>
</forn>
<div class="result">
<!-- <div class="output">
<p> Total Score : 489/500 </p>
<p> Percentage : 95% </p>
<p> Grade : 'A' </p>
<p> You are Pass </p>
</div> -->
</div>
</div>
<script src="./script.js"></script>
</body>
</html>