Webtest Study
Webtest Study
What is a root folder? What is a server? What is a URL? Be able to explain the basic function of HTML Identify the proper syntax for writing HTML code What is a tag? How are tags used? What are opening and closing tags? Identify the following tags: html, head, title, header, body, footer, p, div, ul, ol, li, span, em, strong, img, link, nav, a, Whats the difference between ul & ol? Which tags can close themselves? What is the difference between a block and an inline tags? Name block tags, name inline tags. Can you put an inline tag into a block tag? be able to diagram from content & from code What are attributes? list 5 Identify the class and id attributes, discuss the difference between them. When is one more appropriate than the other? What is the alt attribute for? What does nesting mean? What is the child parent relationship in HTML? When might it be useful? What are pseudo elements? What are file paths? Be able to identify and create.
What is a domain? What does web hosting mean? Whats a browser? Name 4. Be able to explain the basic function of CSS What does CSS stand for? Identify the proper syntax for writing CSS code What is a selector? What is a declaration? What is a property? What is a value? Be able to identify the difference between margin, padding, and border. How are class and id translated in CSS? Name three different ways to apply color (syntax) How do you link a CSS page? CSS can be done internally (embedded), inline, externally. What is the benefit of doing it externally? Know a variety of properties and corresponding values for styling type, layout, and interaction. What are browser tools? I will write a sample set of rules, identify exactly what is occurring. .wrap{ overflow: hidden; width: 900px; } .main{ float: left; padding: 20px; margin: 2px 10px 4px 20px; width: 700px; } .side{ float: left; border-left: 2px dotted rgb(255, 12, 54); padding: 20px; margin: 2px 10px 4px 20px; width: 200px; }