forked from ACM-KJSCE/Into-The-Webverse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (45 loc) · 2.62 KB
/
index.html
File metadata and controls
56 lines (45 loc) · 2.62 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- link css -->
<!--Add font links to html-->
<!-- <link href="https://fonts.cdnfonts.com/css/comback-home" 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=Roboto:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/> -->
<title>Expense Calculator || Into The Webverse</title>
</head>
<body onload="onPageLoad()">
<!-- 1.1 Give title with class as "title" -->
<main>
<!-- 1.2 import images with id as web1, web2, web3, spiderman -->
<div class="wrapper">
<div class="top-wrapper">
<div class="top-wrapper-left">
<div class="outer-box">
<!-- 1.3 Create a div with clas "box" and a paragraph tag with name budget and has input with type as number and id as "budgetInput" and placeholder as "Enter your budget" and make a button with type 'submit' with class="input-btn1" id="input-btn1" and add onclick to set budget-->
</div>
<div class="outer-box">
<!--1.4 Create a div to show budget, expenditure, balance with class as "box" for all 3 with a span in each with id displayBudget", "displayExpenditure", "displayBalance" respectively-->
</div>
</div>
<div class="top-wrapper-right">
<div class="outer-box">
<!-- 1.5 create 3 div with class as "box" for all 3 and take input with id "categoryInput", "amountInput","dateInput" and make a button with id "expenseInput" with onclick function as "setExpense()" -->
</div>
</div>
</div>
<!-- <div class="bottom-wrapper">
<h1 class="title" style="font-family: roboto; text-align: left;">Expense List</h1>
1.6 create a table to display category amount date and to add a delete button and it has a tbody with id "expense_body"
</div> -->
</div>
</main>
<!-- 1.7 connect javascript to html -->
</body>
</html>