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 index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ <h2 class="dropdown-toggle">Family Recipes</h2>
<li><a href="family/omurice.html">Omelette Rice</a></li>
<li><a href="family/chickenPotatoBake.html">Chicken Potato Bake</a></li>
<li><a href="family/spammusubi.html">Spam Musubi</a></li>
<li><a href="tacos.html">Classic Ground Beef Tacos</a></li>
</ul>
</div>
</div>
Expand Down
58 changes: 58 additions & 0 deletions tacos.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Classic Ground Beef Tacos</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
max-width: 600px;
margin: 20px auto;
padding: 0 20px;
color: #333;
}
h1 {
color: #d9534f;
}
h2 {
border-bottom: 2px solid #f0ad4e;
padding-bottom: 5px;
color: #f0ad4e;
}
ul, ol {
padding-left: 20px;
}
li {
margin-bottom: 10px;
}
</style>
</head>
<body>

<h1>Classic Ground Beef Tacos</h1>
<p>A quick, delicious, and classic recipe for seasoned ground beef tacos perfect for any night of the week.</p>

<h2>Ingredients</h2>
<ul>
<li><strong>1 lb</strong> ground beef</li>
<li><strong>1 tbsp</strong> chili powder</li>
<li><strong>1 tsp</strong> ground cumin</li>
<li><strong>1/2 tsp</strong> garlic powder</li>
<li><strong>1/2 tsp</strong> onion powder</li>
<li><strong>1/2 cup</strong> water</li>
<li><strong>8</strong> taco shells (hard shells or soft flour tortillas)</li>
<li><strong>Toppings:</strong> Shredded lettuce, diced tomatoes, shredded cheddar cheese, sour cream, salsa</li>
</ul>

<h2>Steps</h2>
<ol>
<li><strong>Brown the Beef:</strong> Place a large skillet over medium-high heat. Add the ground beef and cook until completely browned, breaking it up with a spoon as it cooks (about 5-6 minutes). Drain any excess grease.</li>
<li><strong>Season:</strong> Turn the heat down to medium. Add the chili powder, cumin, garlic powder, onion powder, and water to the skillet. Stir well to combine.</li>
<li><strong>Simmer:</strong> Let the mixture simmer for about 3 to 5 minutes until most of the liquid has evaporated and the beef is evenly coated in the sauce. Turn off the heat.</li>
<li><strong>Assemble:</strong> Warm your taco shells according to the package instructions. Spoon 2-3 tablespoons of the seasoned beef into each shell, then layer on your favorite toppings like lettuce, cheese, tomatoes, and sour cream. Enjoy!</li>
</ol>

</body>
</html>