-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBanking.html
80 lines (70 loc) · 4.07 KB
/
Banking.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Applications of Computing in Banking</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container-fluid">
<a style="padding-left: 20px;" class="navbar-brand" href="#">sigmasus</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarepic" aria-controls="navbarTogglerDemo03" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarepic">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="medical.html">Medicine</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Banking.html">Banking</a>
</li>
<li class="nav-item">
<a class="nav-link" href="education.html">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="entertainment.html">Entertainment</a>
</li>
</ul>
</div>
</div>
</nav>
<header class="bg-primary text-white text-center p-4">
<h1>Applications of Computing in Banking</h1>
<p>Exploring the Role of Technology in Modern Banking</p>
</header>
<main class="container my-4 ps-5">
<section class="mb-3">
<h2>1. Online Banking and Mobile Banking</h2>
<p>Computing advancements allow customers to access their bank accounts from anywhere using online and mobile banking. This convenience has transformed banking services, enabling users to perform transactions, check balances, and manage accounts without needing to visit a physical branch.</p>
</section>
<section class="mb-3">
<h2>2. Fraud Detection and Security</h2>
<p>Computing is essential for identifying and preventing fraud. Banks use machine learning algorithms and big data analytics to detect suspicious transactions and safeguard both the institution and its customers against fraudulent activity.</p>
</section>
<section class="mb-3">
<h2>3. Automated Teller Machines (ATMs)</h2>
<p>ATMs are one of the earliest applications of computing in banking, providing 24/7 access to services like cash withdrawals and balance inquiries. Modern ATMs are integrated with secure systems, ensuring data safety and efficient service delivery.</p>
</section>
<section class="mb-3">
<h2>4. Customer Relationship Management (CRM)</h2>
<p>Computing systems allow banks to analyze customer data and tailor services accordingly. CRM systems help banks improve customer satisfaction and build stronger relationships by understanding individual needs.</p>
</section>
<section class="mb-3">
<h2>5. Investment and Risk Analysis</h2>
<p>Banks utilize computing for financial modeling, risk assessment, and investment analysis. These tools enable banks to make informed investment decisions and manage risks through data-driven insights.</p>
</section>
<section class="mb-3">
<h2>6. Blockchain and Cryptocurrency</h2>
<p>Blockchain technology has opened new possibilities for secure and transparent transactions. Banks are exploring blockchain to facilitate secure transfers, digital currency exchanges, and fraud prevention, building greater trust and accountability in financial systems.</p>
</section>
<footer>Author: Aryan Bhujade, <a href="https://github.com/aryanbhujade">Github</a></footer>
</main>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>