Skip to content

Commit

Permalink
Start
Browse files Browse the repository at this point in the history
  • Loading branch information
Maaz-319 committed Jul 21, 2024
0 parents commit d62beb5
Show file tree
Hide file tree
Showing 19 changed files with 54,307 additions and 0 deletions.
42 changes: 42 additions & 0 deletions fast/index.html
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>
Loading

0 comments on commit d62beb5

Please sign in to comment.