Leveraging Web Data Class 5 Lab
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-Structure and content
CSS- Adds style to the page
JavaScript - Provides interaction with the web page
Name and describe four distinct HTML tags.
Title tag- Shows the title of the page
Body tag- describes the content
P tag- Defines a paragraph
Head tag-Defines HTML headings
Identify an HTML tag that does not require an end tag.
The br tag does not need an end tag.I defines a line break
Read this page on CSS Syntax then name and describe element selectors, id selectors, and class selectors.
The element selector selects elements based on the element name.
The id selector uses the id attribute of an HTML element to select a specific element.
The 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.
Within the style tag,I assigned the color red to the text in paragraph
Create an HTML button between this tag and the '<br>' tag below. Add custom text to the button and style the button.