Introduction to Front End Development Flashcards
JS:
Expanded Name and Role
JavaScript adds logic and interactivity to a web page.
It can be thought of as the “verbs” of a web page.
CSS:
Expanded Name and Role
Cascading Style Sheets defines the style of HTML.
It can be thought of as the “adjectives” of a web page.
HTML:
Expanded Name and Role
HyperText Markup Language defines the structure of a web page.
It can be thought of as the “nouns” of a web page.
How to View a Website’s Source Code
Right Click -> View Page Source
Steps to Accessing a Website
- A query is sent to the ISP. The ISP uses DNS to convert the domain name into an IP address.
2, A request is sent to the IP address via HTTP. The packet hops from server to server on the fastest route.
- The server receives the request and reads it. It then returns some combination of HTML, CSS, and JavaScript in packets, via the fastest route possible.
4, The user’s computer receives the packets and the browser converts this code into a web page.