Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

TOU Tave the land II LITIS Case Study. 1. Create a new folder for this path of Light Yoga Studio case study. 2. Modify the

image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
TOU Tave the land II LITIS Case Study. 1. Create a new folder for this path of Light Yoga Studio case study. 2. Modify the style sheet (yoga.css) to configure style rules for the new Con- tact page. 3. Create the Contact page: contact.html. Your new page will be similar to Figure 10.41 when you have completed this step. Per prende come Home Classes Schedule Contact Path of Light Yoga Studio Contact Path of Light Yoga Studio Required fields are marked with an asterisk * Name: E-mail How did you hear about us . Comments: COOP Figure 10.41 The new Contact page. Figure 10.41 The new Contact page. Task 1: Create a folder called ch 10yoga to contain your Path of Light Yoga Studio web- site files. Copy the files from the Chapter 90 Case Study ch9yoga folder to your new ch 10yoga folder. Task 2: Configure the CSS. Review Figure 10.41 and the wireframe in Figure 10.42 2. Notice how the text labels for the form controls are on the left side of the con- tent area but contain right-aligned text. Notice the empty vertical space between each form control. When displaying on a narrow view- port, the display will be more pleasing if there is only one column, as shown in Figure 10.43 9. Open yoga.css in a text editor. Con- figure the CSS as follows: Line 1 Line 2 Line 3 Line 1 label input type="text" Row 1 Line 2 label input type="email" Row 2 10.42. Notice how the text labels for the form controls are on the left side of the con- tent area but contain right-aligned text. Notice the empty vertical space between each form control. When displaying on a narrow view- port, the display will be more pleasing if there is only one column, as shown in Figure 10.43 9. Open yoga.css in a text editor. Con- figure the CSS as follows: Line 1 Line 2 Line 3 Line 1 label input type="text" Row 1 Line 2 label input type="email" Row 2 Line 3 label input type="text" Row 3 Line 4 label datalist Row 4 Line 5 label textarea scrolling text box Row 5 Line 6 Row 6 Line 7 input type="submit" Column 2 Column 1 Figure 10.42 The grid layout sketch of the Path of Light Yoga St X + III Home Schedule Classes Contact Path of Light Yoga Studio Contact Path of Light Yoga Studio Required fields are marked with an asterisk * Name: * E-mail: How did you hear about us? Comments: Figure 10.43 Single-column form in a nar- row viewport. a. Configure the single column display for narrow viewports using flexbox. Add the following CSS above the media queries to configure the form element selection as a flex container with one column. Also set a .5em bottom margin on the input, datalist, and textarea ele- ment selectors. form { display: flex; flex-flow: column nowrap; } input, datalist textarea { margin-bottom: .5em; } b. Configure the two-column display with grid layout. Add CSS to the first media query to accomplish this. 1. Configure a form element selec- tor. Set 60% width, maximum width 40em arid display with an incorrectly formatted e-mail address. Classes Schedule Contact Path of Light Yoga Studio Contact Path of Light Yoga Studio Recuired fields are marked with an asterisk Name Email How did yo about us? Comments C Figure 10.44 The browser checks for re- quired information. Provide information for all the form controls and click the submit button to submit the form. If you are connected to the Internet, this will send your form information to the server- side script configured in the
tag. A confirmation page similar to Figure 10.450 will be displayed that lists the form control names and the values you entered. page Figure will be displayed that lists the form control names and the values you entered. LYS Path of Light Yoga Studio We will be contacting you soon! Here is the information you entered: myName: Sparky Toke myEmail: sparky webdevbasics.net my Referral: Google myComments: This is a test comment Figure 10.45 The form confirmation page. In this case study you have coded and styled a form, configured form processing, and com- pleted the final page in the Path of Light Yoga Studio website. TOU Tave the land II LITIS Case Study. 1. Create a new folder for this path of Light Yoga Studio case study. 2. Modify the style sheet (yoga.css) to configure style rules for the new Con- tact page. 3. Create the Contact page: contact.html. Your new page will be similar to Figure 10.41 when you have completed this step. Per prende come Home Classes Schedule Contact Path of Light Yoga Studio Contact Path of Light Yoga Studio Required fields are marked with an asterisk * Name: E-mail How did you hear about us . Comments: COOP Figure 10.41 The new Contact page. Figure 10.41 The new Contact page. Task 1: Create a folder called ch 10yoga to contain your Path of Light Yoga Studio web- site files. Copy the files from the Chapter 90 Case Study ch9yoga folder to your new ch 10yoga folder. Task 2: Configure the CSS. Review Figure 10.41 and the wireframe in Figure 10.42 2. Notice how the text labels for the form controls are on the left side of the con- tent area but contain right-aligned text. Notice the empty vertical space between each form control. When displaying on a narrow view- port, the display will be more pleasing if there is only one column, as shown in Figure 10.43 9. Open yoga.css in a text editor. Con- figure the CSS as follows: Line 1 Line 2 Line 3 Line 1 label input type="text" Row 1 Line 2 label input type="email" Row 2 10.42. Notice how the text labels for the form controls are on the left side of the con- tent area but contain right-aligned text. Notice the empty vertical space between each form control. When displaying on a narrow view- port, the display will be more pleasing if there is only one column, as shown in Figure 10.43 9. Open yoga.css in a text editor. Con- figure the CSS as follows: Line 1 Line 2 Line 3 Line 1 label input type="text" Row 1 Line 2 label input type="email" Row 2 Line 3 label input type="text" Row 3 Line 4 label datalist Row 4 Line 5 label textarea scrolling text box Row 5 Line 6 Row 6 Line 7 input type="submit" Column 2 Column 1 Figure 10.42 The grid layout sketch of the Path of Light Yoga St X + III Home Schedule Classes Contact Path of Light Yoga Studio Contact Path of Light Yoga Studio Required fields are marked with an asterisk * Name: * E-mail: How did you hear about us? Comments: Figure 10.43 Single-column form in a nar- row viewport. a. Configure the single column display for narrow viewports using flexbox. Add the following CSS above the media queries to configure the form element selection as a flex container with one column. Also set a .5em bottom margin on the input, datalist, and textarea ele- ment selectors. form { display: flex; flex-flow: column nowrap; } input, datalist textarea { margin-bottom: .5em; } b. Configure the two-column display with grid layout. Add CSS to the first media query to accomplish this. 1. Configure a form element selec- tor. Set 60% width, maximum width 40em arid display with an incorrectly formatted e-mail address. Classes Schedule Contact Path of Light Yoga Studio Contact Path of Light Yoga Studio Recuired fields are marked with an asterisk Name Email How did yo about us? Comments C Figure 10.44 The browser checks for re- quired information. Provide information for all the form controls and click the submit button to submit the form. If you are connected to the Internet, this will send your form information to the server- side script configured in the
tag. A confirmation page similar to Figure 10.450 will be displayed that lists the form control names and the values you entered. page Figure will be displayed that lists the form control names and the values you entered. LYS Path of Light Yoga Studio We will be contacting you soon! Here is the information you entered: myName: Sparky Toke myEmail: sparky webdevbasics.net my Referral: Google myComments: This is a test comment Figure 10.45 The form confirmation page. In this case study you have coded and styled a form, configured form processing, and com- pleted the final page in the Path of Light Yoga Studio website

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database 101

Authors: Guy Kawasaki

1st Edition

0938151525, 978-0938151524

More Books

Students also viewed these Databases questions

Question

Why is the System Build Process an iterative process?

Answered: 1 week ago