From the course: HTML for Programmers
Unlock the full course today
Join today to access over 24,500 courses taught by industry experts.
Create a flower delivery form
From the course: HTML for Programmers
Create a flower delivery form
- [Instructor] You are a florist opening a new shop in your city. You want to make online ordering easier by building an app that lets customers order flowers to be delivered to a friend, family member, or colleague. Given the following mockup, build the HTML page that would allow customers to order a flower delivery. Pause the video here. Once you've coded your solution, come back and we'll walk through the solution together. The first thing we want to do is create a form. We'll leave the action blank for now. Since we have two sections, let's create two divs. The first will be the contact information and the second will be the order information. I'll add a comment above each div to explain which content section it relates to. Let's start with the contact section. We have two columns in this section, so to logically group the form elements, I'll create two more divs inside the contact section, one for recipient details…