Extra Markup Flashcards

1
Q

iframe code

A

(iframe)

width=””

height=””

src=””

(/iframe)

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

meta name=”description” value and code

A
  • description is commonly used by search engines to understand what the page is about and should be a maximum of 155 characters
  • sometimes it is also displayed in search engine results

(meta name=”description” content=”blah” /)

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

meta name=”robots” value and code

A
  • indicates whether the search engines should add this page to their search results or not
  • noindex = page will not be added
  • nofollow = adds page in search engine results but not any pages that it links to

(meta name=”robots” content=”nofollow” /)

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

meta http-equiv=”author” value and code

A
  • defines the author of the web page

(meta http-equiv=”author” content=”blah” /)

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

meta http-equiv=”pragma” value and code

A
  • prevents the browser from caching the page

(meta http-equiv=”pragma” content=”no-cache” /)

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

meta http-equiv=”expires” and code

A
  • indicates when the page should expire (and no longer be cached)
  • date must be specified in the format below

(meta http-equiv=”expires”

content=”Fri, 04 Apr 2014 23:59:59 GMT” /)

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