-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
43 lines (40 loc) · 1.4 KB
/
index.php
File metadata and controls
43 lines (40 loc) · 1.4 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
<?php
include 'config.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="https://img.icons8.com/emoji/48/000000/bank-emoji.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<title>Money Transfer</title>
</head>
<body>
<nav class="navbar">
<div class="logo"><img src="icon.jpg" alt="logo"></div>
<ul class="nav_list">
<div id="nav-contain">
<li> <a href="index.php">Home</a></li>
<li> <a href="about.php">About Us</a></li>
<li> <a href="service.php">Services</a></li>
<li> <a href="contact.php">Contact Us</a></li>
</div>
</ul>
</nav>
<section class="firstSection">
<div class="box-main">
<div class="firsthalf">
<p class="text-big">My basic bank </p>
<p class="text-small">My project on basic banking system</p>
<div class="buttons">
<a href="viewCustomer.php"><button class="btn">View Customer</button></a>
<a href="form.php"> <button class="btn">Money Transfer</button></a>
</div>
</div>
</div>
</div>
</section>
</body>
</html>