Created
May 2, 2021 23:09
-
-
Save mixspark/9459cdc3a51561b7fd2644171d27991f to your computer and use it in GitHub Desktop.
Food Recipe // source https://jsbin.com/ciwafefija
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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>🐔</p> | |
<li>remove the skin</li> | |
<li>chop in pieces the chiken</li> | |
<li>add water</li><p>💧</p> | |
<li>chop the carrots</li><p>🥕</p> | |
<li>chop the onion</li><p>🧄"></div></p> | |
<li>boil the rest of the chiken with pepper and salt</li><p>🧂</p> | |
<li>after an hour stir</li><p>😀</p> | |
<li>add the vegetables</li> | |
<li>add the rice</li> | |
<li>add the lemon juice</li><p>🍋</p> | |
<li>add the chopped chiken</li> | |
<li>boil for 20 mins</li><p>🕒</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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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