-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
170 lines (99 loc) · 6.18 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<title>Amjad Majed</title>
<meta charset="utf-8">
<meta name="description" content="Amjad Majed's personal webstie and portfolio">
<meta name="keywords" content="amjad, majed, portfolio, personal, software engineer, software, application, app, android,
programing, development">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Lobster|Pacifico|Raleway:400,700" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="images/favicon/favicon.ico">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- Font Awesome CSS -->
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<!-- BX Slider CSS -->
<link rel="stylesheet" type="text/css" href="css/jquery.bxslider.css">
<!-- Animate CSS -->
<link rel="stylesheet" type="text/css" href="css/animate.css">
<!-- Responsive CSS - Media Queries -->
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-109817459-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-109817459-1');
</script>
</head>
<body>
<header>
<h1> CGPA and GPA Calculator! </h1>
<hr>
</header>
<!-- This section will include the three possible system options available -->
<section id="options-section">
<div id="options-section-overlay">
<div id="system-options-container" class="container">
<!-- system options radio buttons -->
<div id="system-options" class="row">
<h3>Choose your system desired : (these system are based on systems currently used at UET Lahore)</h3>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4">
<input type="radio" value="old" autocomplete="off" class="system-option" name="option" id="test1"><p class="system-option"> Old System </p>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4">
<input type="radio" value="new" autocomplete="off" class="system-option" name="option" id="test2"><p class="system-option"> New System </p>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4">
<input type="radio" value="custom" autocomplete="off" class="system-option" name="option"><p class="system-option"> Custom System </p>
</div>
</div>
<br>
<!-- scheme of the system summary -->
<div id="system-scheme" class="row">
</div>
<br>
<!-- custom input buttons -->
<div id="custom-input-buttons" class="row">
<button type="button" id="custom-input-button-add" onclick="addCustomGrade()" class="btn btn-info"> Add Grade </button>
<button type="button" id="custom-input-button-delete" onclick="deleteCustomGrade()" class="btn btn-danger"> Delete Grade </button>
<button type="button" id="custom-input-button-save" onclick="saveCustomScheme()" class="btn btn-primary"> Save </button>
</div>
<br>
<!-- custom input fields -->
<div id="custom-input-fields" class="row">
</div>
</div>
</div>
</section>
<section id="semesters-section">
<div id="semesters-section-overlay">
<div id="semesters-container" class="container">
<!-- scheme of the system summary -->
<div id="cgpa-value" class="row">
</div>
<br>
<!-- custom input buttons -->
<div id="semesters-buttons" class="row">
<button type="button" onclick="addSemester()" id="semester-button-add" class="btn btn-info"> Add Semester </button>
<button type="button" onclick="deleteSemester()" id="semester-input-button-delete" class="btn btn-danger"> Delete Semester </button>
<button type="button" onclick="calculate()" id="semester-input-button-calculate" class="btn btn-primary"> Calculate </button>
</div>
<br>
<div id="semesters-row" class="row">
</div>
</div>
</div>
</section>
<!-- Scripts -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- My Script -->
<script src="js/custom.js"></script>
</body>
</html>