Exercise 1.1 and 1.2 Flashcards

1
Q

ISP meaning and definition

A

Internet Service Provide: internet access

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

IP meaning and definition

A

Internet Protocol: Phone number for the internet (every device is assigned a separate number)

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

HTTP meaning and definition

A

Hypertext Transfer Protocol: The web uses browsers to transmit data through this.

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

HTTPS meaning and definition

A

Hypertext Transfer Protocol Secure: Allows for encryption, making it safer

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

URL meaning and definition

A

Uniform Resource Locator: Easy way to remember web addresses

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

Web server definition

A

A computer that stores all the files that makeup a webpage and uses HTTP to serve those files to web clients.

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

Web Browser definition

A

Sends requests to web servers to display web pages (chrome, etc..)

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

Website definition

A

A single domain name that contains one or more web pages

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

Web page definition

A

A document viewed in a browser that’s usually written in HTML

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

Domain definition

A

A name denoting the location of a website or group of websites

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

Directory definition

A

A catalog of websites or files

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

Protocol example

A

https:

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

Domain example

A

google.com

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

Directory example

A

anything after google.com/

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

Parses definition

A

analyzes

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

HTML meaning and definition

A

Hypertext Markup Language- tells your browser how to process and present the text

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

HTML Elements definition and example

A

A single piece of an HTML document or web page. Ex: <div class="container">Hello world!</div>

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

HTML Tags definition and example

A

Building blocks of HTML. Ex: <div> and </div>

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

HTML Attributes definition and example

A

Used to define the characteristics of the element. Ex: class=”container”

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

Where does an HTML Attribute go?

A

Placed within an HTML element’s opening tag

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

“html” tag definition

A

Holds together all of the HTML elements on a page. Wraps around all other content.

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

What is the exception that goes before the “html” tag and is required?

A

DOCTYPE

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

What does the Element contain?

24
Q

What is Metadata?

A

Data concerning the HTML document (defines the title, character set, styles, links, etc…)

25
Where is the Element placed?
Between the tag and the tag
26
What does the "link" tag do?
Allows you to link a document to an external source
27
What are the two attributes of the "link" tag?
href and rel
28
What is href?
Hypertext reference (where to find the linked document)
29
What is rel?
Relationship (tells how the HTML document and the document are related)
30
What is a Favicon?
Favorite Icon- little icon next to your site's name in the browser tab or favorites list.
31
What is the typical size of a Favicon?
16x16 or 32x32 pixels (multiples of 16)
32
What does a Favicon need to end with?
".ico"----- sometimes ".png" is accepted
33
Where does the "title" tag appear?
The browser tab, favorites list, and search engine results.
34
Where is the "body" tag found?
Right below the ending "/head" tag
35
What does the "body" tag do??
Defines the body of a document
36
What does the body include?
All content in an HTML document
37
Where does the closing tag go?
Right before the
38
What is a "div>" tag?
Generic, all-purpose container to group other HTML elements together
39
What kind of element is a "div" tag? "/div"
A block element
40
What is a block element?
Takes up the whole space of the container
41
What is the difference between a "div" tag and a "span" tag?
A span tag groups things like words or text on a page, without adding line breaks before or after the element.
42
What is the "a" tag used for? What does it stand for?
Anchor- used to define Hyperlinks
43
If a hyperlink is underlined and blue....
It is unvisited
44
If a hyperlink is underlined and purple....
It has been visited
45
If a hyperlink is underlined and red...
It is active
46
Would --a href="google.com"> be correct?
No, it needs the https:// before it
47
What size would be bigger? "h1" or "h7"
"h1"
48
What is a "p" tag?
Paragraph
49
What two attributes are required in an "img" tag?
src and alt
50
What does "alt" do?
Shows the alternate text for an image in the event the image can't be displayed (or for screen readers)
51
What does "src" do?
Specifies the URL of the image file
52
What is special about the "img" tag?
It has no end tag
53
What is the difference in JPG and PNG?
PNG doesn't lose quality when compressed. It can also be transparent and support animation
54
When is a GIF best used?
Small animated icons (another lossless format)
55
What is an SVG created from?
Lines and shapes as opposed to pixels
56
In my project, what image types will I use?
JPG unless animated (PNG), and SVG for logos/icons