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

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...