Skip to content

Instantly share code, notes, and snippets.

View jasonhughes1's full-sized avatar

Jason Hughes jasonhughes1

View GitHub Profile
@jasonhughes1
jasonhughes1 / Intro-To-Node.md
Last active January 15, 2018 20:20
Introduction to Node.js prework
const http = require('http');
const url = require('url');
const server = http.createServer();

let messages = [
  { 'id': 1, 'user': 'Jason Hughes', 'message': 'hi there!' },
  { 'id': 2, 'user': 'Bob Loblaw', 'message': 'check out my law blog' },
  { 'id': 3, 'user': 'Lorem Ipsum', 'message': 'dolor set amet' }
];
1) Going forward, I am going to spend more time thinking about accessibility and how EVERYONE could view a webpage/application that I build.
2) After experiencing what It's like to use a webpage without being able to see it, I understand how frustrating the internet can be.

Day One

1.)

On a website, what is the purpose of HTML code? HTML is the STRUCTURE of a website.

2.)

What is the difference between an element and a tag?