D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
jordanmccutcheon
Full window
Github gist
Leveraging Web Data Class 5 Jordan McCutcheon
<!DOCTYPE html> <html lang="en"> <p style="color:powder.blue;"> <head> <meta charset="UTF-8"> <title>Leveraging Web Data Class 5 Lab</title> <style type="text/css"> h1 { text-align: center; } </style> </head> <body> <h1>Leveraging Web Data Class 5 Lab</h1> <br> <h2>Web Development Resources</h2> <ul> <li><a href="https://www.w3schools.com/html/default.asp" target="_blank">W3 HTML Resources</a></li> <li><a href="https://www.w3schools.com/css/default.asp" target="_blank">W3 CSS Resources</a></li> <li><a href="https://www.w3schools.com/css/default.asp" target="_blank">W3 JavaScript Resources</a></li> </ul> <h2>Questions and Answers</h2> <h4>Jordan McCutcheon.</h4> <br> <h4>Describe the three components of the HTML document (HTML, CSS, JavaScript).</h4> <p>Html is Hypertext Markup Language, a standardized system for tagging text files to achieve font, color, graphic, and hyperlink effects</p> <p>css is cascading stle sheets which helps control the layout</p> <p>javascript is language for scripting </p> <br> <h4>Name and describe four distinct HTML tags.</h4> <p>doctype defines document type, body defines the body, p defines a paragraph and hr defines thematic changes</p> <br> <h4>the br for break does not need one.</h4> <p>Your answer here</p> <br> <h4>Read this page on <a href="https://www.w3schools.com/css/css_syntax.asp" target="_blank">CSS Syntax</a> then name and describe element selectors, id selectors, and class selectors.</h4> <p>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 </h4> <p>Your answer here</p> <br> <h4>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.</h4> <p>i added a STYLE tag to change the color to blue</p> <br> <h4>Create an <a href="https://www.w3schools.com/tags/tag_button.asp" target="_blank">HTML button</a> <button type="button">CLICK ME Please!</button> <br> <script type="text/javascript"> </script> </body> </html>