Certainly! Below is an example of a simple HTML landing page for “استعلام قیمت و موجودی قطعه و لوازم یدکی” (Inquiry about Prices and Inventory of Parts and Spare Parts). The page includes a header, a brief description, a contact form, and some styling.
“`html
استعلام قیمت و موجودی قطعه و لوازم یدکی
اگر به دنبال استعلام قیمت و موجودی قطعات و لوازم یدکی هستید، در مکان مناسبی قرار دارید. لطفاً اطلاعات زیر را وارد کنید تا ما بتوانیم به شما کمک کنیم.
“`
### Description of the Code:
1. **HTML Structure**: The code uses a standard HTML structure with a `` declaration, a `head` section for metadata, and a `body` section for the content.
2. **Styling**: Simple CSS styles are included to improve the appearance of the container, headings, buttons, and form elements. You can expand the styles as needed.
3. **Form**: A form captures the user’s name, email, the part they are inquiring about, and a message.
4. **Responsive Design**: The design aims to be responsive. However, you can improve responsiveness further by adding media queries.
You can copy this code into a `.html` file and open it in a web browser to see the landing page in action. Adjust the content or styles as needed to fit your brand or specific requirements.
