-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (106 loc) · 3.69 KB
/
Copy pathindex.html
File metadata and controls
107 lines (106 loc) · 3.69 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://unicons.iconscout.com/release/v4.0.8/css/line.css"
/>
<title>GPA CAlCULATOR</title>
</head>
<body>
<div class="navbar">
<div class="uli">
<button><i class="uil uil-bars"></i></button>
<ul class="Profile">
<li class=""><a href="https://portal.esut.edu.ng/login.aspx" target="_blank">Portal Login</a></li>
</ul>
</div>
<div class="enugu">
<img src="./Images/logo.png" alt="logo">
<h1 id="head">Enugu state University of Science and Technology</h1>
</div>
<button type="reset" id="Profile">Refresh</button>
</div>
<div class="intro">
<h1>YOUR FUTURE IS IN YOUR HANDS</h1>
<form>
<div class="item1">
<label for="name">Your Name:</label>
<input type="text" name="" id="username">
<label for="Reg-no">Reg-No:</label>
<input type="text" name="Reg-No" id="reg-no">
</div>
<div class="item2">
<label for="Level">Level:</label>
<select name="level" id="level">
<option value="">Level</option>
<option value="100">100</option>
<option value="200">200</option>
<option value="300">300</option>
<option value="400">400</option>
<option value="500">500</option>
<option value="600">600</option>
</select>
<label for="Department">Department:</label>
<input type="text" name="Department" id="Dep">
</div>
<button class="btn" id="btn1">Enter</button>
</form>
</div>
<header class="display">
<h1 class="header1">GPA CACULATOR</h1>
<div class="container1">
<h4>Enter Your Grades and Get Your GPA in Seconds</h4>
<form class="frm1">
<div class="course-code">
<label for="course-code" id="course-code">Course-Code:</label>
<input
type="text"
name="course-code"
id="code"
placeholder="MAT 111"
/>
</div>
<div class="course-unit">
<label for="course-Unit" id="course-Unit">Course-Unit:</label>
<input type="text" name="course-Unit" id="unit" placeholder="3" />
</div>
<div class="course-grade">
<label for="course-grade" id="course-grade">Course-Grade:</label>
<select name="course-grade" id="grade">
<option value="">Grade</option>
<option value="5">A</option>
<option value="4">B</option>
<option value="3">C</option>
<option value="2">D</option>
<option value="1">E</option>
<option value="0">F</option>
</select>
</div>
</form>
<div class="container2">
<button class="btn1">Add courses</button>
<button class="btn2">Remove courses</button>
</header>
</div>
<main>
<div class="tabds">
<table id="table1">
<tr>
<th>Course-code</th>
<th>Course unit</th>
<th>Course-Grade</th>
</tr>
</table>
<button class="btn3">Submit</button>
</div>
</main>
</div>
<h1 class="header2"></h1>
<script src="./script.js"></script>
</body>
</html>