0% found this document useful (0 votes)
84 views2 pages

Webtest Study

A root folder is the top-level folder that contains a website's files. A server hosts the website files and allows them to be accessed over the internet via a URL. HTML uses tags like <html>, <head>, <title>, <body>, etc. to structure and provide semantics to web content. CSS is used to style and lay out HTML elements, and can be applied internally, inline, or externally. Common CSS properties specify things like color, font, size, layout, and interaction.

Uploaded by

kpduffy
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
84 views2 pages

Webtest Study

A root folder is the top-level folder that contains a website's files. A server hosts the website files and allows them to be accessed over the internet via a URL. HTML uses tags like <html>, <head>, <title>, <body>, etc. to structure and provide semantics to web content. CSS is used to style and lay out HTML elements, and can be applied internally, inline, or externally. Common CSS properties specify things like color, font, size, layout, and interaction.

Uploaded by

kpduffy
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Web Design Midterm Study Guide

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; }

You might also like