Skip to content
Permalink
b78b475c1f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
38 lines (37 sloc) 1.51 KB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add New Expense</title>
<link rel="stylesheet" type="text/css" href="styles.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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
</head>
<body>
<h2 class="h2-expense">Add New Expense</h2>
<h3 class="subheading">It’s a great habit to keep track of your expenditure.</h3>
<div>
<h2 class="h2-expense-details-first">Amount</h2>
</div>
<div>
<h2 class="h2-expense-details-second-third">Description</h2>
</div>
<div>
<h2 class="h2-expense-details-second-third">Date</h2>
</div>
<div style="width: 100%; height: 78px; background: #214E34; border-top-left-radius: 15px; border-top-right-radius: 15px; position: fixed; bottom: 0; left: 0">
<div class="img">
<a href="home.html">
<img src="images/home.png" alt="Home icon">
</a>
<img src="images/column-chart.png" alt="Home icon">
<img src="images/more.png" alt="Home icon">
<img src="images/calendar.png" alt="Home icon">
<img src="images/avatar.png" alt="Home icon">
</div>
</div>
<button class="add-button">Add</button>
</body>
</html>