Introduction to Front End Development Flashcards

1
Q

JS:

Expanded Name and Role

A

JavaScript adds logic and interactivity to a web page.

It can be thought of as the “verbs” of a web page.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

CSS:

Expanded Name and Role

A

Cascading Style Sheets defines the style of HTML.

It can be thought of as the “adjectives” of a web page.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

HTML:

Expanded Name and Role

A

HyperText Markup Language defines the structure of a web page.
It can be thought of as the “nouns” of a web page.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How to View a Website’s Source Code

A

Right Click -> View Page Source

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Steps to Accessing a Website

A
  1. 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.

  1. 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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly