Skip to content

Instantly share code, notes, and snippets.

@mixspark
Created May 2, 2021 23:09
Show Gist options
  • Save mixspark/9459cdc3a51561b7fd2644171d27991f to your computer and use it in GitHub Desktop.
Save mixspark/9459cdc3a51561b7fd2644171d27991f to your computer and use it in GitHub Desktop.
Food Recipe // source https://jsbin.com/ciwafefija
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Food Recipe</title>
<style id="jsbin-css">
body
{
background-color: red;
}
h1{
padding-bottom:25px;
text-decoration: underline;
font-weight: bold;
text-shadow: 2px 2px;
}
p{
font-size:40px;
}
ol{
font-size:25px;
}
ul{
font-size:30px;
}
/* This is a single-line comment */
/*useful site for css amd not only...*/
/*https://www.w3schools.com/css/css_comments.asp*/
</style>
</head>
<body>
<h1>Chiken Soup</h1>
<!--A useful site for css properties is https://www.w3schools.com/css/css_examples.asp-->
<p>
My favorite food is <em>chiken soup</em> because i like chiken and it is very tasty in winter time
</p>
<!-- this is an Ordered list how to make the dish-->
<ol>
<li>cut the chiken</li><p>&#x1F414</p>
<li>remove the skin</li>
<li>chop in pieces the chiken</li>
<li>add water</li><p>&#x1F4a7</p>
<li>chop the carrots</li><p>&#x1F955</p>
<li>chop the onion</li><p>&#x1F9c4"></div></p>
<li>boil the rest of the chiken with pepper and salt</li><p>&#x1F9c2</p>
<li>after an hour stir</li><p>&#x1F600</p>
<li>add the vegetables</li>
<li>add the rice</li>
<li>add the lemon juice</li><p>&#x1F34B</p>
<li>add the chopped chiken</li>
<li>boil for 20 mins</li><p>&#x1F552</p>
<li>add the smashed eggs</li>
<li>add some thyme</li>
<li>add some olive oil</li>
</ol>
<!-- this is an unordered list with the ingredients of the food -->
<ul>
<li>salt</li>
<li>pepper</li>
<li>chiken</li>
<li>3 eggs</li>
<li>1 cup of rice</li>
<li>2 lemons</li>
<li>2 litre water</li>
<li>thyme</li>
<li>2 carrots</li>
<li>1 onion</li>
<li>olive oil</li>
</ul>
<p> Dish photos</p>
<ul>
<img src="https://imgur.com/KsOoj2T.jpg" alt="Soup portion" />
<img src="https://imgur.com/0x4Vc0F.jpg" alt="Soup fillet" />
</ul>
<script id="jsbin-source-css" type="text/css">body
{
background-color: red;
}
h1{
padding-bottom:25px;
text-decoration: underline;
font-weight: bold;
text-shadow: 2px 2px;
}
p{
font-size:40px;
}
ol{
font-size:25px;
}
ul{
font-size:30px;
}
/* This is a single-line comment */
/*useful site for css amd not only...*/
/*https://www.w3schools.com/css/css_comments.asp*/</script>
</body>
body
{
background-color: red;
}
h1{
padding-bottom:25px;
text-decoration: underline;
font-weight: bold;
text-shadow: 2px 2px;
}
p{
font-size:40px;
}
ol{
font-size:25px;
}
ul{
font-size:30px;
}
/* This is a single-line comment */
/*useful site for css amd not only...*/
/*https://www.w3schools.com/css/css_comments.asp*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment