Skip to content

Instantly share code, notes, and snippets.

View mstorino's full-sized avatar

Maggie Storino mstorino

  • PartySlate
  • Chicago
View GitHub Profile
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin master
@mstorino
mstorino / template.html
Created February 4, 2017 16:15 — forked from wrburgess/template.html
HTML Template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title Text</title>
<link rel="stylesheet" href="[PATH or URL]">
</head>
<body>
<!-- CSS Stylesheets with Relative Paths -->
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>CSS Stylesheets with Relative Paths</title>
<!-- This line is money! It points your HTML to the CSS file. -->
@mstorino
mstorino / exercise.html
Created January 26, 2017 01:59 — forked from wrburgess/exercise.html
exercise1.html
<!-- Activity 1: Basic HTML Bio -->
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Activity 1: Basic HTML Bio</title>
</head>
@mstorino
mstorino / intro_to_the_console.md
Last active January 26, 2017 01:41 — forked from wrburgess/intro_to_the_console.md
Intro to the Console

Intro to the Console for Maggie

  • cd (changes directory)

  • cd ~ (changes to home directory)

  • cd .. (moves up one directory)

  • ls (lists files in folder)