Web Tech Flashcards

1
Q

The Web includes 3 things:

A

1) text files,HTML
2) a program-browser
3) a set of rules, HTTP protocol

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

web page

A

a document that is viewed in a web browser

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

website

A

a collection of orgnized related web pages

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

web server

A

a program that serves web pages to the browsers

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

it is used to display content

A

tag

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

HTML element

A

everythig from opening to closing tag

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

link

A

a clickable item that open another web page

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

CSS

A

Cascading style sheet-a textual language for describing how a web page is styled for visual representation

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

CSS rule

A

specifies styling properties for specific HTML element

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

CSS selector

A

specifies the HTML elements to which the specific rule applies

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

CSS styling declaration

A

a css property, e.g. color or font size

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

interpreter

A

executes programing statements directly

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

DOM

A

Document Object Model- data structure that corresponds to the HTML document displayed in a web browser

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

document object

A

property of the window object

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

Invented the www

A

Tim Berners-Lee

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

HTML extensions

A

.html and .htm

17
Q

Which attributes stores the URL?

A

href attribute

18
Q

Which opening tag uses the href attribute?

A

<a></a>

19
Q

CSS can be applied to HTML in 3 ways:

A

1) a css declaration is placed in a tag’s style attribute
2) a css rule is placed in an HTML document’s head using <style> tags
3) with a link tag</style>

20
Q

Which tag is used to include JavaScript in HTML?

A
<script>
tag
</script>
21
Q

modern JS interpreters are called _______ and they use _______ compilation

A

JS engines
just-in-time

22
Q

JS changes a image by changing an img element’s ________ attribute

A

src

23
Q

JS changes an element’s styling by modifying element’s ________ attribute

A

style