Posts

Showing posts from May, 2023

how to create About us and enquiry page using HTML coding???

Image
  when user wants to know about the author’s details and enquire about the recipes, the following codes are used. About us page: This page contains basic information about foodie website. The html code for about us page is given below. “Aboutus.html” <html> <head> <title> Foodie </title></head> <style> p { color: navy; text-indent: 30px; } </style> <body bgcolor="lightgreen"> <h1> Foodie </h1>      <p> Foodie is a great collection of mouth watering receipes. It has variety of receipes in different categories. South special,North Indian combo,Continental menus and Italy receipes </p> </body> </html> the about us page is like as follows Next,enquiry page code is given below.   Enquiry page             When someone wants to find some recipes or doubts in the recipes, this enqui...

how to create a simple,elegant food receipe website????

Image
  Food… Its one of the basic needs of our life. without food,we cant live. If you know cooking, then its fine. We design a food receipe website with following features. Here, a food receipe website. let us name it as “foodie”. It has Home page, about us,enquiry form and receipes page. Home page displays the title, logo and categories along with a welcome message. About us page displays the details of the website owning authority. Receipes page has many categories. They are divided into 4 types as follows… ·        South special ·        North Indian combo ·        Continental menus ·        Italy receipes At last, enquiry form is used to collect the user queries. Steps to follow: ·        Create a folder and name it as “foodie”. ·        Create a two logos. one for the top and another ...