-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterm_of_use.html
More file actions
31 lines (31 loc) · 1.26 KB
/
Copy pathterm_of_use.html
File metadata and controls
31 lines (31 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shorcut icon" href="./favicon.ico" type="image/x-favicon">
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:wght@500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
<script defer src="https://kit.fontawesome.com/9571898d36.js" crossorigin="anonymous"></script>
<script defer src="./script.js"></script>
<title>Term Of Use</title>
<style>
body{
background: #f0f0f5;
}
</style>
</head>
<body>
<main class="term-main">
<h2>Terms of Use</h2>
<p>
Jhay Banking is a demonstration and personal project for learning and showcasing web development skills. All content and features are provided for educational and illustrative purposes. Users agree to use the site responsibly and acknowledge that no real banking transactions are conducted through this platform.
</p>
</main>
</body>
</html>