-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
134 lines (107 loc) · 5.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="vendor/venobox/venobox.css" rel="stylesheet">
<link href="vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="vendor/aos/aos.css" rel="stylesheet">
<link rel="stylesheet" href="css/nav.css">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="topnav" id="myTopnav">
<a class="brand" href="index.html"><i><b>Easy Transfer</b></i></a>
<a href="index.html" class="active"><b>Home</b></a>
<a href="transfer_hist.php" ><i ></i><b>Transaction History</b></a>
<a href="customer_details.php" ><i> </i><b>Customers Details</b></a>
<a href="index.html#aboutus"><b>About Us</b></a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="wrapper">
<img src="img/homepage-min.jpg" class="responsive" style="width:100%;">
</div>
<section id="services" class="services section-bg">
<div class="container" style="align-items: center;">
<div class="section-title" data-aos="fade-up">
<h2>Services</h2>
<p>Try These Services</p>
</div>
<div class="row">
<div class="col-md-6 col-lg-3 d-flex align-items" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box">
<div class="icon"><i class="fa fa-id-card"></i></div>
<h4 class="title"><a href="add_customer.php">Add Customer</a></h4>
<p class="description">You can add customer into the database easily.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="200">
<div class="icon-box">
<div class="icon"><i class="fa fa-history"></i></div>
<h4 class="title"><a href="transfer_hist.php">Transaction History</a></h4>
<p class="description">The Customer Transaction History report lists<br/> sales,customer payments, and refunds. </p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="fa fa-user"></i></div>
<h4 class="title"><a href="customer_details.php">Customer Details</a></h4>
<p class="description">Can see customers details like Name, Email,etc.<br> You can also do transactions</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="fa fa-globe"></i></div>
<h4 class="title"><a href="https://www.thesparksfoundationsingapore.org/">The Sparks Foundation</a></h4>
<p class="description">Visit The Sparks Foundation Website</p>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="section-title" data-aos="fade-up">
<a id="aboutus"><h2>About Us</h2></a>
<p>GRIP Internship Task From The Sparks Foundation </p>
<h3>Task 1: Basic Banking System</h3>
<br><h3>Design & Developed By Darshan Khaire</h3>
<div>
</section>
<a href="#" class="back-to-top"><i class="icofont-simple-up"></i></a>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="vendor/php-email-form/validate.js"></script>
<script src="vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="vendor/venobox/venobox.min.js"></script>
<script src="vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="vendor/aos/aos.js"></script>
<script src="js/main.js"></script>
<footer>
<div>
<a href="https://www.youtube.com/"><i class="fa fa-youtube-play" style="color:white"></i></a>
<a href="https://www.linkedin.com/in/darshan-khaire-561476207"><i class="fa fa-linkedin-square" style="color:white"></i></a>
<a href="https://www.google.com/"><i class="fa fa-google" style="color:white"></i></a>
<a href="https://github.com/darshankk-ui"><i class="fa fa-github" style="color:white"></i></a>
</div>
<small>© Copyright 2021, Darshan Khaire</small>
<br>
</footer>
</body>
</html>