Skip to content

Instantly share code, notes, and snippets.

@mdriscoll93
Last active April 10, 2025 00:57
Show Gist options
  • Select an option

  • Save mdriscoll93/633e3d88838dae53fde4b8c249e2ea79 to your computer and use it in GitHub Desktop.

Select an option

Save mdriscoll93/633e3d88838dae53fde4b8c249e2ea79 to your computer and use it in GitHub Desktop.

Revisions

  1. mdriscoll93 revised this gist Apr 10, 2025. No changes.
  2. mdriscoll93 revised this gist Apr 10, 2025. 1 changed file with 78 additions and 1 deletion.
    79 changes: 78 additions & 1 deletion broccoli_beef.html
    Original file line number Diff line number Diff line change
    @@ -1 +1,78 @@
    ‎‎​
    <!DOCTYPE html>
    <html lang="en">

    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Broccoli Beef Recipe</title>
    <style>
    body {
    font-family: sans-serif;
    margin: 20px;
    line-height: 1.6;
    }

    h1,
    h2 {
    color: #333;
    }

    .ingredients,
    .instructions {
    margin-bottom: 20px;
    }

    ul,
    ol {
    padding-left: 20px;
    }

    li {
    margin-bottom: 5px;
    }
    </style>
    </head>

    <body>

    <h1>Broccoli Beef Stir-Fry</h1>

    <div class="ingredients">
    <h2>Ingredients</h2>
    <ul>
    <li>1 lb beef steak (flank or sirloin), thinly sliced</li>
    <li>1 tbsp soy sauce</li>
    <li>1 tbsp cornstarch</li>
    <li>1 lb broccoli florets</li>
    <li>2 tbsp vegetable oil</li>
    <li>2 cloves garlic, minced</li>
    <li>1/2 cup beef broth</li>
    <li>3 tbsp soy sauce</li>
    <li>2 tbsp oyster sauce</li>
    <li>1 tbsp brown sugar</li>
    <li>1 teaspoon sesame oil</li>
    </ul>
    </div>

    <div class="instructions">
    <h2>Instructions</h2>
    <ol>
    <li>In a bowl, combine beef with 1 tbsp soy sauce and cornstarch, marinate for at least 15 minutes.</li>
    <li>Heat vegetable oil in a wok or large skillet over high heat.</li>
    <li>Add beef and stir-fry until browned, remove and set aside.</li>
    <li>Add garlic to the wok and sauté briefly until fragrant.</li>
    <li>Add broccoli and a splash of water to the wok and stir-fry for 2-3 minutes until slightly tender-crisp.
    </li>
    <li>Return beef to the wok.</li>
    <li>Combine beef broth, 3 tbsp soy sauce, oyster sauce, and brown sugar in a small bowl. Pour sauce into the
    wok.</li>
    <li>Stir everything together until the sauce thickens and coats the beef and broccoli.</li>
    <li>Stir in sesame oil.</li>
    <li>Serve hot over rice or noodles.</li>

    </ol>
    </div>

    </body>

    </html>
  3. mdriscoll93 created this gist Apr 10, 2025.
    1 change: 1 addition & 0 deletions broccoli_beef.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    ‎‎​