HTML Flashcards

1
Q

Tells Mobile Devices to display using full width and at normal scale

A

E: meta
A: [name=”viewport”, content=”width=device-width, initial-scale=1”]

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

Helps with SEO by adding a description

A

E: meta
A: [name=”description”, content=”Description Here”]

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

Helps page become a sharable object resource

A

E: meta
A: [property=”og:(title|type|url|image)”, content=”Data Here”

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

Setup correct charset

A

E: meta
A: [name=”charset”, content=”utf-8”]

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

Setup Rules for Robots

A

E: meta
A: [name=”robots” content=”(no)index,(no)follow”]

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

Setup Styles or Src Files

A

E: link
A: [rel=”(icon|stylesheet|manifest|apple-touch-icon)”, href=”URL”]

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

Stylesheet relationship name

A

E: link
A: [rel=”stylesheet”, href=”URL”]

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

Icon relationship name

A

E: link
A: [rel=”icon”, href=”URL”]

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

Apple touch icons relationship name

A

E: link
A: [rel=”apple-touch-icon”, href=”URL”]

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

meta tag to set the color user-agents should use to modify the interface

A

E: meta
A: [name=”theme-color”, content=”#hex”]

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

Correct target to open a page in a separate tag

A

A: [target=”_blank”]

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

Correct target to open a page on the same tag. Also, the default

A

A: [target=”_self”]

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

True or False, Submitting to a website sends the values as query parameters?

A

True

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

What input field attribute do you need to have in order for the data to be sent when POSTing a form?

A

A: [name=”Name goes here”]

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

When clicking on an input label, the user-client is not focusing on the input field, why has that happened?

A

Because the Label’s attribute For=”” and the Input field’s ID=”” must be included and match.

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

How do you mark an input field as required

A

Add the “required” empty boolean attribute

17
Q

Toggle autocomplete (input field or parent form element)

A

A: [autocomplete=(true|false)]

18
Q

Set Max Length

A

A: [maxlength=NUM]

19
Q

Which common HTML elements do not have a semantic meaning?

A

A: span
A: div

20
Q

List new HTML5 semantic elements

A
A: header
A: nav
A: section
A: article
A: figure
A: aside
A: main
A: footer
21
Q

What’s an example of an HTML Entity

A

&copy = copyright symbol

22
Q

Correct HTML5 Doctype

A

!doctype html

23
Q

How do you add a Javascript file?

A

E: script
A: [src=”URL”]

24
Q

Inline Script?