Week 2 - Web Flashcards

1
Q

what does html stand for

A

hypertext markup language

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

what does html do

A

defines pages / documents of information

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

what does URI stand for

A

uniform resource indentifier

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

what is a uri

A

a reference for a page or other resource

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

what does http stand for

A

hypertext transfer protocol

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

what does http do

A

sends messages allowing transfer of resources across the internet

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

What do html tags do?

A

they describe the structure of the page

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

what elements does the hold

A

meta
title
style

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

what does the tag hold?

A

information about the document

- recommended charset attribute

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

tag for bold?

A

<b></b>

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

tag for italics?

A

<i></i>

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

tag for emphasis?

A

<em></em>

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

tag for stronger emphasis?

A

<strong></strong>

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

tag for an image?

A

<img></img>

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

what does url stand for?

A

uniform resource locator

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

what does url do?

A

identifies a resource

locates that resource within the network

17
Q

what does urn stand for

A

uniform resource name

18
Q

what is a urn?

A

a persistent, location-independent resource identifier

19
Q

how is a urn made up?

A

a protocol, a service/server name and a local path for resource

20
Q

What are the 3 HTTP methods?

A

Get
Head
Post

21
Q

What is the GET method?

A

when client sends a request for a resource

22
Q

what is the head method?

A

when client requests HTTP header information only

23
Q

what is the post method?

A

when client sends arguments in URL to be processed by server

24
Q

Features of GET?

A
  • reload harmless
  • can be bookmarked
  • can be cached
  • parameters remain in browser history
  • only ASCII characters allowed
25
Q

why is GET less secure than POST?

A

data is sent as part of the url.

  • never use for strong passwords
  • data is visible to everyone in URL
26
Q

Features of POST?

A
  • resubmitted on reload
  • cant be bookmarked
  • not cached
  • parameters not saved in browser history
  • no restrictions on data type
27
Q

What does CSS stand for

A

Cascading style sheet

28
Q

what does CSS do?

A
  • allows separation of content from presentation

- allows different presentation for same content

29
Q

What does a CSS rule consist of?

A

a selector and a declaration block