-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
44 lines (37 loc) · 1.63 KB
/
index.php
File metadata and controls
44 lines (37 loc) · 1.63 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Gp Calculator</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body>
<header id="main-header" class="bg-success text-white p-4 mb-3">
<div class="container">
<h1 id="header-title">Js Grade Calculator</h1>
</div>
</header>
<div class="container">
<div class="col-lg-5 mx-auto">
<div id="main" class="card card-body">
<h2 class="title">Number Of Courses</h2>
<form action="" id='form' class="contact-form">
<input type="number" id="loopNumber" class="form-control mb-2"
placeholder="Enter number of courses">
<button id="button" class="btn btn-dark">Enter</button>
<div class="card card-body" id="resultDisplay" style="display: none;"></div>
<div class="form-group" id="div">
<button id="reset" class="btn btn-success" style="display: none;">Reset</button>
</div>
</form>
</div>
</div>
</div>
<!-- https://github.com/nazrulwazir/Parcel-Tracking-System
parcel tracking laravel github
https://github.com/ARCANEDEV/LaravelTracker -->
<script type="text/javascript" src="app.js"></script>
</body>
</html>