Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![Review Assignment Due Date](https://classroom.github.com/assets/deadline-readme-button-22041afd0340ce965d47ae6ef1cefeee28c7c493a6346c4f15d667ab976d596c.svg)](https://classroom.github.com/a/Dr_CRy30)
# Introduction to HTML

## Description:
Expand Down
Binary file added expense-tracker-app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 53 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Budget Buddy</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
</head>
<body>
<header>
<h1>Welcome to your Expense Tracker</h1>
</header>

<main>
<p>Track your dough, so it doesn't go!</p>

<h2>Registration Form</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br><br>

<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br><br>

<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone"><br><br>

<input type="submit" value="Register">
</form>

<h2>User Information</h2>
<table border="1">
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone Number</th>
</tr>
<tr>
<td>John Kamau</td>
<td>johnkamau@email.com</td>
<td>+254720123456</td>
</tr>
</table>

<h2>App Screenshot</h2>
<img src="expense-tracker-app.png" alt="Expense Tracker Screenshot" width="300">

<p>For more information, visit <a href="https://google.com" target="_blank">Google</a>.</p>
</main>
<footer>
<p>© 2024 Kelvin Murithi | All rights reserved.</p>
</footer>

</body>
</html>