Skip to content

Instantly share code, notes, and snippets.

View richardsaci's full-sized avatar

Richard Allen richardsaci

View GitHub Profile
@richardsaci
richardsaci / startCoding.md
Last active November 3, 2021 12:46
Let' Start Coding

Let' Start Coding


In the "Let's Start Coding" section, we will begin building the header section of the body element. We will do this using JavaScript and the Document Object Model API.


  • Open Visual Studio Code by right-clicking on your project folder and selecting the option "Open with Visual Studio Code."
  • template
@richardsaci
richardsaci / Add_ Above_Below_League_Average.md
Created October 30, 2021 17:17
Add Above or Below League Average Column to Our Table

Add Above or Below League Average Column to Our Table


@richardsaci
richardsaci / AddRowsOfDataToOurTableJSON.md
Created October 30, 2021 17:15
Add rows of data to our table, using the JSON file as our database


@richardsaci
richardsaci / Build_Our_Basic_Table.md
Last active November 3, 2021 14:07
Build Our Basic Table

Building Our Basic Table


  • Build Our Basic Table for Udemy Course Programmatically Build an HTML Table using Vanilla JavaScript, the Document Object Model, and JSON (JavaScript Object Notation).
  • Open Visual Studio Code by right-clicking on your project folder and selecting the option "Open with Visual Studio Code."
  • template
  • Create a new folder titled "basicTable" by clicking on the icon to create a new folder.
@richardsaci
richardsaci / firstDOM.md
Last active January 1, 2022 11:56
First DOM Code to Use, this changes the title, create the header, main, and footer sections, adds h3 - Step By Step

firstDOM.js uses the Document Object Model to change the title, creates the header, main, and footer sections, adds h1 and h4 elements to describe the page.

  • Prerequisites:
  • Visual Studio Code
  • Basic HTML, CSS, and JavaScript skills.

  1. At the bottom of this page I have a GitHub Gist preview that contains the entire index.html file.
  2. Use the emmet command "Shift !" in Visual Studio Code to automatically insert the boilerplate code for your index.html file.
  • The only changes you need to make to the HTML before implementing this code are:
@richardsaci
richardsaci / DOM3.md
Last active October 31, 2021 01:40
Document Object Model - Hands On Practice
@richardsaci
richardsaci / gitHubDesktop.md
Last active December 9, 2021 20:32
GitHub Desktop

GitHub Desktop

  • Contents

  • github.com - Free Account

  • GitHub Free Account - There are several free videos online that will show you how to get a free GitHub account. If you have any problems, leave me a message.

  • Installation

@richardsaci
richardsaci / GitHubGistCheatsheet.md
Last active November 11, 2021 17:24
04-02 - GitHub Gist Cheatsheet
@richardsaci
richardsaci / node_NPM.md
Last active March 25, 2022 14:52
Node and Node Package Manager
@richardsaci
richardsaci / dom3.md
Created October 20, 2021 22:24
Document Object Model 3 of 3

Document Object Model 3 of 3

  • document is the root of our page.

  • document.head

  • document.body

  • app.classList.add

  • app.classList.contains // returns true of false

  • Use # for ID