Leveraging Web Data Class 5 Lab

Leveraging Web Data Class 5 Lab


Web Development Resources

Questions and Answers

Jordan McCutcheon.


Describe the three components of the HTML document (HTML, CSS, JavaScript).

Html is Hypertext Markup Language, a standardized system for tagging text files to achieve font, color, graphic, and hyperlink effects

css is cascading stle sheets which helps control the layout

javascript is language for scripting


Name and describe four distinct HTML tags.

doctype defines document type, body defines the body, p defines a paragraph and hr defines thematic changes


the br for break does not need one.

Your answer here


Read this page on CSS Syntax then name and describe element selectors, id selectors, and class selectors.

The element selector will select elements based on the element name, The id selector will use the id attribute of an HTML element to select a specific element, and the class selector picks an element with a s class atribute

Your answer here


Change the color of the text in all '<p>' tags. Describe how you did it. Color must be clear and discernable from the white background.

i added a STYLE tag to change the color to blue


Create an HTML button