-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
38 lines (37 loc) · 1.16 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
<!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" />
<title>S&B Banking</title>
<link rel="stylesheet" href="./assets/css/stylesheet.css" />
<link
href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css"
rel="stylesheet"
/>
<link rel="shortcut icon" href="./assets/images/favicon.png">
</head>
<body>
<?php
include "./components/header.php";
?>
<section class="home">
<h1>
All the <span>experience</span><br />
in new <i class="ri-arrow-right-line"></i>S&B Bank
</h1>
<p>
Simple transfers, payment for utlities, functional statement, card
settiings, for which you used to have to the branch online-banking.
</p>
<div class="buttons">
<a href="create-user.php" class="createUser">Create User</a>
</div>
</section>
<?php>
include "./components/footer.php";
?>
<script src="./assets/js/script.js"></script>
</body>
</html>