Skip to content

Instantly share code, notes, and snippets.

View sarathkumar6's full-sized avatar
πŸ‘¨β€πŸ’»
Trying to do better everyday

S@r@th N@g@r@j sarathkumar6

πŸ‘¨β€πŸ’»
Trying to do better everyday
View GitHub Profile
@mattrelph
mattrelph / fcc-data-visualization-projects-visualize-data-with-a-scatterplot-graph.markdown
Created July 19, 2019 15:47
FCC - Data Visualization Projects - Visualize Data with a Scatterplot Graph

FCC - Data Visualization Projects - Visualize Data with a Scatterplot Graph

User Story #1: I can see a title element that has a corresponding id="title". User Story #2: I can see an x-axis that has a corresponding id="x-axis". User Story #3: I can see a y-axis that has a corresponding id="y-axis". User Story #4: I can see dots, that each have a class of dot, which represent the data being plotted. User Story #5: Each dot should have the properties data-xvalue and data-yvalue containing their corresponding x and y values. User Story #6: The data-xvalue and data-yvalue of each dot should be within the range of the actual data and in the correct data format. For data-xvalue, integers (full years) or Date objects are acceptable for test evaluation. For data-yvalue (minutes), use Date objects. User Story #7: The data-xvalue and its corresponding dot should align with the corresponding point/value on the x-axis. User Story #8: The data-yval

@marko-jankovic
marko-jankovic / CSS and HTML interview questions.md
Last active July 5, 2025 04:19
CSS and HTML interview questions

1. HTML Fundamentals

HTML Structure and Semantics

  • What is HTML?
    HTML (Hypertext Markup Language) is the standard language used to create and design documents on the web. It structures content using elements or tags.

  • What are the building blocks of HTML5?
    The building blocks of HTML5 include elements like <header>, <footer>, <section>, <article>, and <nav> which enhance semantic meaning and accessibility.

  • What is the purpose of the `` element in HTML?