Leveraging Web Data Class 5 Lab
Pamela Griner


Web Development Resources

Questions and Answers

Change the text of the title tag in the head section to your name.


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

HTML stands for "Hypertext Markup Language" which is a program language used to create a webpage

CSS is a programming language used to describe the style of a HTML document and how elements should be displayed

JavaScript is a programming language used by web developers to program the behavior of a web page


Name and describe four distinct HTML tags.

Four distinct HTML tags are: head, title, body, paragraph


Identify an HTML tag that does not require an end tag.

br, line breaks do not require an end tag


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

Element selectors selects elements based on name, ID selector uses the id attribute to select a specific element, and Class selector selects elements with a specific class attribute.


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.

In order to change the color of the text, I located the heading "h1", then used the Element Selector and and typed an open bracket, next line typed color and preference then semi-color and on the next line, closed the bracket.


Create an HTML button between this tag and the '<br>' tag below. Add custom text to the button and style the button.