forked from acmucsd/hackschool-fa22
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.45 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
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Finance Buddy</title>
<link rel="stylesheet" href="main.css" type="text/css">
<style>
h2 {text-align: center;}
p {text-align: center;}
div {text-align: center;}
</style>
</head>
<body>
<div id="navbar">
<div class="title">
<h1>Finance Buddy</h1>
<a href="index.html"></a>
</div>
<div class="nav-buttons">
<a href="createPurchase.html">Add New Purchase</a>
<a href="viewPurchases.html">View All Purchases</a>
</div>
</div>
<h2>Welcome to Finance Buddy!!</h2>
<p>You can navigate to <i>Add New Purchase</i> button at the top to log a new purchase.
Then you can go over to <i>View All Purchases</i> to view the purchases.
</p>
<div class="row">
<div class="column">
<img src=https://images.booksense.com/images/133/968/9781986968133.jpg class="center">
</div>
<div class="column">
<img src=https://img.freepik.com/free-vector/finance-financial-performance-concept-illustration_53876-40450.jpg?w=2000 width="500" class="center">
</div>
</div>
<img src="https://acmucsd.com/_next/static/media/ACMWhiteLogo.ccb2d1cb.png" width="500" class="center">
</body>
</html>