-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (69 loc) · 2.93 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="phone.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Young+Serif&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap" rel="stylesheet">
</head>
<body>
<nav id="navbar">
<button><a href="signup.html" target="_blank">SIGN UP</a></button>
<button><a href="login.html" target="_blank">LOGIN</a></button>
<div > <i class="fa-solid fa-user fa-lg" style="color: #ffd400;"></i></div>
</nav>
<section id="section1">
<h1 class="type">WELCOME TO BUDGET BUDDY!!</h1>
<h2>Your digital companion for efficient expense tracking,budget management and seamless expense reporting.</h2>
<h2> "Stay financially organized!"</h2>
<div>
<button><a href="#section2">ADD EXPENSE</a></button>
<button><a href="#section3">VIEW EXPENSE</a></button>
</div>
</section >
<section id="section2">
<h1>ADD EXPENSE</h1>
<div id="container" >
<form >
<label for="description" >Description:</label>
<input type="text" id="description" required placeholder="enter description">
<label for="amount" >Amount:</label>
<input type="number" id="amount" required placeholder="enter amount">
<label for="date">Date:</label>
<input type="date" id="date" required>
<label for="number" >Number of friends:</label>
<input type="number" id="number" required placeholder="enter number of friends:">
<button type="submit" onclick="addExpense(event)">Add Expense</button>
</form>
</div>
</section>
<section id="section3">
<h1>EXPENSE DETAILS</h1>
<div id="expenseList">
<div id="box1">
<h2>Expense List</h2>
<ul id="expenseItems"></ul>
</div>
<div id="container1">
<div class="box" >Total Expenses: Rs <span id="totalExpenses">0.00</span></div>
<div class="box" >Amount Owed by Each Friend: Rs <span id="amountOwed">0.00</span></div>
</div>
</div>
</div>
</section>
<footer>
<div class="center">
Copyright © www.budgetbuddy.com.All Rights Reserved
</div>
</footer>
<script src="script.js"></script>
</body>
</html>