-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.07 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
<!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="stylesheet" href="./css/index.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<title>SMTS</title>
</head>
<body>
<header>
<nav class="navbar">
<div class="logo"><a href="index.html">SMTS</a></div>
<div class="buttons">
<a href="view_all.php">Make Transaction</a>
<a href="transactionsHistory.php">View Transactions</a>
</div>
</nav>
<div class="text-content">
<h2> <strong>S</strong>imple <strong>M</strong>oney <strong>T</strong>ransaction <strong>S</strong>ystem</h2>
<p>Transact money among the customers on one click without any login or signup process</p>
</div>
<div class="link">
<p class="text">Have a Great Day</p>
</div>
</header>
</body>
</html>