On a website, what is the purpose of HTML code? HTML is the STRUCTURE of a website.
What is the difference between an element and a tag?
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. |
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' }
];