-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
26 lines (25 loc) · 1000 Bytes
/
index.php
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
<html>
<head>
<meta name="viewport" content="with=device-width, initial-scale=1.0">
<title>Spark Foundation Internship - Banking System</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="header">
<nav>
<a hre="index.php"><img src="logo.jpg"></a>
<div class="nav-links">
<ul>
<li><a href="index.php">HOME</a></li>
<li><a href="customer.php">CUSTOMER DETAILS</a></li>
<li><a href="transactionhistory.php">TRANSACTION HISTORY</a></li>
</ul>
</div>
</nav>
<div class="text-box">
<h1>World's Safest Bank</h1>
<p>“A banker is a fellow who lends his umbrella when the sun is shining and wants it back the minute it begins to rain”<br> ― Mark Twain</p>
</div>
</section>
</body>
</html>