How to make a beautiful website?
At first, what do you know about the website? And I am sure that at least once, you heard this. If you know already, then that's good. Let's begin, basically, the website is the collection of the webpage. Then what is a webpage, ahh again what is this!
A web page or webpage is a document, commonly written in HTML, that is viewed in an Internet browser. A web page can be accessed by entering a URL address into a browser's address bar. A web page may contain text, graphics, and hyperlinks to other web pages and files.
Again what is HTML?
Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.
I prefer you guys to use a text editor such as Sublime or Note Pad ++.
I wrote basic HTML codes making listing and commenting on favorite food.
where I did an unordered list on ingredients and ordered list on instructions.
This tag ' <!-- a comment here --> ' is the tag for commenting.
Commenting tag is important for all programming language and it is just for a programmer to remember his/her past work such as in c++ / c we use ' // ' for comment.
A web page or webpage is a document, commonly written in HTML, that is viewed in an Internet browser. A web page can be accessed by entering a URL address into a browser's address bar. A web page may contain text, graphics, and hyperlinks to other web pages and files.
Again what is HTML?
Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.
I prefer you guys to use a text editor such as Sublime or Note Pad ++.
I wrote basic HTML codes making listing and commenting on favorite food.
where I did an unordered list on ingredients and ordered list on instructions.
This tag ' <!-- a comment here --> ' is the tag for commenting.
Commenting tag is important for all programming language and it is just for a programmer to remember his/her past work such as in c++ / c we use ' // ' for comment.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <!-- My favorite food --> | |
| <title>Nepalese chicken noodle soup (thukpa)</title> | |
| </head> | |
| <body> | |
| <!-- Ingredients --> | |
| <ul> | |
| <li>vegetable oil</li> | |
| <li>(6 cups) chicken stock</li> | |
| <li>skinless chicken thigh fillet</li> | |
| <li>rice noodles</li> | |
| <li>carrot, cut into thin matchsticks</li> | |
| <li>red capsicum, thinly sliced</li> | |
| <li>lemon juice</li> | |
| <li>salt and pepper, to taste</li> | |
| <li>chopped coriander, to serve</li> | |
| <li>spice paste</li> | |
| <ul> | |
| <li>small onion, chopped</li> | |
| <li>garlic cloves, chopped</li> | |
| <li>chopped ginger</li> | |
| <li>ground cumin</li> | |
| <li>ground turmeric</li> | |
| <li>ground timur powder (Szechwan pepper)</li> | |
| <li>pinch asafoetida powder</li> | |
| <li>long green chilli, deseeded, chopped</li> | |
| <li>tomatoes, chopped</li> | |
| </ul> | |
| </ul> | |
| <!-- Steps how to prepare dish (Instructions) --> | |
| <ol> | |
| <li>To make the spice paste, combine all the ingredients, except the tomatoes, in a blender or food processor and process until finely chopped. | |
| Add the tomatoes and process until combined. </li> | |
| <li>Heat the oil in a large saucepan over medium heat. | |
| Add the spice paste and cook, stirring, for 6–7 minutes, until aromatic and the paste loses its raw smell. | |
| Pour in the chicken stock and bring to the boil. | |
| Reduce the heat and simmer for 15 minutes. Add the chicken thigh and simmer gently for 10 minutes, or until cooked. | |
| Remove from the stock and roughly shred.</li> | |
| <li>Heat the oil in a large saucepan over medium heat. | |
| Add the spice paste and cook, stirring, for 6–7 minutes, until aromatic and the paste loses its raw smell. | |
| Pour in the chicken stock and bring to the boil. | |
| Reduce the heat and simmer for 15 minutes. | |
| Add the chicken thigh and simmer gently for 10 minutes, or until cooked. | |
| Remove from the stock and roughly shred.</li> | |
| <li> | |
| Meanwhile, bring 2 litres of water to the boil in a large saucepan. | |
| Add rice noodles and cook for 2 minutes. | |
| Drain and refresh in cold water. | |
| Drain again and set aside. | |
| </li> | |
| <li> | |
| Add the carrot and capsicum to the stock and simmer for 2–3 minutes, until the vegetable are just tender. | |
| Add the lemon juice and season to taste. | |
| </li> | |
| <li> | |
| Divide the noodles between bowls and top with chicken. | |
| Ladle the stock and vegetables over the noodles and top with coriander. | |
| </li> | |
| </ol> | |
| </body> | |
| </html> How it looks like? Let us have a clear view which is given just below: |

Comments
Post a Comment