-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit d62beb5
Showing
19 changed files
with
54,307 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Fast Aggregate Calc</title> | ||
<link rel="stylesheet" href="style.css"> | ||
|
||
<script src="jquery-3.7.1.js"></script> | ||
<script> | ||
$(function () { | ||
$('#container').hide().slideDown(1000); | ||
$('#btn-container').hide().fadeIn(2000); | ||
}); | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<script src="script.js"></script> | ||
<h4 id="heading">Aggregate Calculator for Fast Computing Programs</h4> | ||
<div id="container"> | ||
<input type="number" step="0.01" id="metric-perc" placeholder="Obtained Metric Marks"><br> | ||
<input type="number" step="0.01" id="metric-tot" placeholder="Total Metric Marks"><br> | ||
|
||
<input type="number" step="0.01" id="fsc-perc" placeholder="Obtained Fsc Marks (PART-1)"><br> | ||
<input type="number" step="0.01" id="fsc-tot" placeholder="Total Fsc Marks (PART-1)"><br> | ||
|
||
<input type="number" step="0.01" id="test-perc" , placeholder="Entry Test Percentage"><br> | ||
<h3 id="result">Aggregate</h3> | ||
</div> | ||
|
||
<div id="btn-container"> | ||
<button onclick="calculateCost()" id="btn">Calculate</button> | ||
</div> | ||
|
||
<p id="footer"><a href="https://github.com/maaz-319">Github</a> | <a | ||
href="https://linkedin.com/in/maazbinasif">LinkedIn</a></p> | ||
|
||
</body> | ||
|
||
</html> |
Oops, something went wrong.