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
56 lines (55 sloc) 1.94 KB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</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>
<div class="welcome">
<h2 class="first-h2">Hi, User</h2>
<h3>Welcome Back!</h3>
</div>
<div class="budget">
<h2>December Budget</h2>
<div>
<h1 class="amount-budget">$1,234.56</h1>
<img>
</div>
</div>
<div class="transactions">
<h3 class="h3-transactions">Recent Transactions</h3>
<div class="details">
<img>
<div class="name-date">
<h3 class="h3-description">Chipotle</h3>
<p>Today</p>
</div>
<h2 class="h2-amount">$10</h2>
</div>
<div class="details">
<img>
<div class="name-date">
<h3 class="h3-description">Gas</h3>
<p>Yesterday</p>
</div>
<h2 class="h2-amount">$35</h2>
</div>
</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">
<img src="images/home.png" alt="Home icon">
<img src="images/column-chart.png" alt="Home icon">
<a href="expense.html">
<img src="images/more.png" alt="Home icon">
</a>
<img src="images/calendar.png" alt="Home icon">
<img src="images/avatar.png" alt="Home icon">
</div>
</div>
</body>
</html>