-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (68 loc) · 3.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CGPA to Percentage Converter</title>
<link rel="icon" type="image/png" href="icon.png"> <!-- Icon attached -->
<!-- ================= All CSS files are linked here ================= -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="js/jquery.min.js"></script>
</head>
<body>
<!-- ============================= Average to % Conversion ================================== -->
<section id="average" class="average">
<div class="max-width">
<h2 class="title">CGPA to Percentage Converter</h2>
<div class="university">
<select name="" id="university" name="Select University">
<option value="su">Select University</option>
<option value="mu">Mumbai University</option>
<option value="pu">Pune University</option>
<option value="iitb">IIT Bombay</option>
<option value="bvdu">Bhartiya Vidyapeth Deemed University</option>
</select>
</div>
<div class="average-content">
<div class="column-left ">
<div class="fields">
<div class="field cgpa">
<input id="cgpa" type="text" placeholder="CGPA or GPA" required>
</div>
<div class="field convert">
<button id="btn" type="submit" onclick="converted()">Convert</button>
</div>
</div>
</div>
<div class="column-right">
<div class="results">
<span id="resultCGPA">_</span><span> CGPA = </span>
<span id="resultPercentage">_</span><span>%</span>
</div>
</div>
</div>
</div>
</section>
<!-- ============================= START Footer Section =================================== -->
<footer class="footer-section">
<div class="container">
<div>
<div class="social">
<h3> FOLLOW ME </h3>
<a href="https://www.linkedin.com/in/swaraj-patil-profile/" target="blank"> <i class="fab fa-linkedin"></i></a>
<a href="https://www.instagram.com/itz_rocking_sp/" target="blank"> <i class="fab fa-instagram"></i></a>
<a href="https://twitter.com/iamswaraj_patil" target="blank"> <i class="fab fa-twitter"></i></a>
<a href="https://github.com/Swaraj-Patil" target="blank"> <i class="fab fa-github"></i></a>
</div>
<div class="copyrights">
<span>Created By <a href="https://swaraj-patil.github.io/portfolio/" target="_blank">Swaraj Patil</a> | <span class="far fa-copyright"></span> 2021 All rights reserved </span>
</div>
</div>
</div>
</footer>
<!-- ============================= END Footer Section =================================== -->
<script src="js/main.js"></script>
</body>
</html>