deepsite-project / index.html
Arvindreddy's picture
Here's a detailed breakdown of the food logging components in a calorie tracker app:
f121505 verified
raw
history blame contribute delete
761 Bytes
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My static Space</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="card">
<h1>Welcome to Calorie Tracker!</h1>
<p>Track your daily calorie intake and maintain a healthy diet.</p>
<div class="d-flex flex-column gap-2">
<a href="tracker.html" class="btn btn-primary">Track Meals</a>
<a href="history.html" class="btn btn-outline-primary">View History</a>
</div>
<p class="mt-3">
Log your meals, scan barcodes, and monitor your nutrition goals.
</p>
</div>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css">
</body>
</html>