tailieunhanh - Learning Web Design Third Edition- P46

Learning Web Design Third Edition- P46:Everything you need to know to create professional web sites is right here. Learning Web Design starts from the beginning defining how the Web and web pages work and builds from there. By the end of the book, you'll have the skills to create multi-column CSS layouts with optimized graphic files, and you'll know how to get your pages up on the Web. | th scope row Thing A th td data A1 td td data A2 td td data A3 td tr tr th scope row Thing B th td data B1 td td data B2 td td data B3 td tr tr th scope row Thing C th td data C1 td td data C2 td td data C3 td tr table body html Chapter 9 Forms 1. A form for accessing your bank account online POST because of security issues A form for sending t-shirt artwork to the printer POST because it uses the file selection input type A form for searching archived articles GET because you may want to bookmark search results A form for collecting essay entries POST because it is likely to have a length text entry 2. Which form control element is best suited for the following tasks Choose your astrological sign from 12 signs Pull-down menu select Indicate whether you have a history of heart disease yes or no Radio buttons input type radio Write up a book review textarea Select your favorite ice cream flavors from a list of eight flavors. Eight checkboxes or a pull-down menu Select your favorite ice cream flavors from a list of 25 flavors. Scrolling menu select multiple multiple 3. Each of these markup examples contains an error. Can you spot what it is input name gender value Male The type attribute is missing. checkbox name color value teal Checkbox is not an element name it is a value of the type attribute in the input element. select name popsicle option value orange option value grape option value cherry select The ption element is not empty. It should contain the value for each option for example option Orange option . 436 Appendix A input type password The required name attribute is missing. textarea name essay height 6 width 100 Your story. textarea The width and height of a text area are specified with the cols and rows attributes respectively. Exercises 9-1 through 9-3 Final source document DOCTYPE html PUBLIC - W3C DTD XHTML Strict EN http TR xhtml1 DTD html xmlns http 1999 xhtml lang en xml lang en head meta http-equiv .