-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Expense Splitter</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="particles-js"></div>
<div class="container">
<h1>Expense Splitter</h1>
<form id="expense-form">
<div>
<label for="expense">Expense Description:</label>
<input type="text" id="expense" required>
</div>
<div>
<label for="amount">Amount:</label>
<input type="number" id="amount" step="0.01" required>
</div>
<div>
<label for="friends">Number of Friends:</label>
<input type="number" id="friends" required>
</div>
<button type="submit">Split Expense</button>
</form>
<div id="result" style="display: none;"></div>
</div>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="particles-config.js"></script>
<script src="script.js"></script>
</body>
</html>