Skip to content

Instantly share code, notes, and snippets.

@AbdullahQureshi1080
Created March 29, 2020 00:05
Show Gist options
  • Save AbdullahQureshi1080/34253ac48d86ed888dff78d470e20253 to your computer and use it in GitHub Desktop.
Save AbdullahQureshi1080/34253ac48d86ed888dff78d470e20253 to your computer and use it in GitHub Desktop.
My Recipe // source https://jsbin.com/xovubuy
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>My Recipe</title>
</head>
<body>
<!-- <h1> Tag - Main Heading for the Page - From Readers Percepective - Better Understanding --->
<!-- <em> Tag is used to emphasize the Keyword -->
<h1>How to make a Cheese <em>Omelette!</em></h1>
<!-- <h3> Tag for the two Sub headings Ingredients and What do to -->
<h3>INGREDIENTS</h3>
<!-- Unordered List listing All Ingredients-->
<ul>
<!-- <Strong> Tag is used to highlight the necessary things-->
<li><Strong>2 eggs</Strong></li>
<li>1/4 cup of onions and bell peppers heaped</li>
<li>Salt</li>
<li><Strong>1 &amp; 1/4 tsp oil</Strong> </li>
<li><Strong>Cheese as desired - 1/4 cup goes</Strong></li>
<li><Strong>2 pinches of red chili powder</Strong></li>
<li>1 pinch turmeric </li>
<li>2 pinches <Strong>Garam MASALA</Strong> </li>
</ul>
<h3>What To Do : </h3>
<!-- Ordered List explaining how to make the omelette-->
<ol>
<li>Whisk eggs well in bowl.</li>
<li>Heat a pan with oil, when it is just hot enoght add the onionsm other veggies and salt. Saute on high flame for 1 minute.</li>
<li>Add <Strong>garam masala</Strong>, tumeric and <Strong>red chili powder</Strong>, <em><Strong>Mix well.</Strong></em> Spread the mixture.</li>
<li>Reduce the flame to medium and pour eggs.</li>
<li>Allow to cook until the base is set. Flip it and cook.</li>
<li>Fry it to and fro on both siderd until fully cooked, Then add the gated cheese as desired.</li>
<li>Fold it half way and cook on a low heat until the cheese melts.</li>
<li>Serve cheese omelette warm.</li>
</ol>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment