HTML Flashcards
Tells Mobile Devices to display using full width and at normal scale
E: meta
A: [name=”viewport”, content=”width=device-width, initial-scale=1”]
Helps with SEO by adding a description
E: meta
A: [name=”description”, content=”Description Here”]
Helps page become a sharable object resource
E: meta
A: [property=”og:(title|type|url|image)”, content=”Data Here”
Setup correct charset
E: meta
A: [name=”charset”, content=”utf-8”]
Setup Rules for Robots
E: meta
A: [name=”robots” content=”(no)index,(no)follow”]
Setup Styles or Src Files
E: link
A: [rel=”(icon|stylesheet|manifest|apple-touch-icon)”, href=”URL”]
Stylesheet relationship name
E: link
A: [rel=”stylesheet”, href=”URL”]
Icon relationship name
E: link
A: [rel=”icon”, href=”URL”]
Apple touch icons relationship name
E: link
A: [rel=”apple-touch-icon”, href=”URL”]
meta tag to set the color user-agents should use to modify the interface
E: meta
A: [name=”theme-color”, content=”#hex”]
Correct target to open a page in a separate tag
A: [target=”_blank”]
Correct target to open a page on the same tag. Also, the default
A: [target=”_self”]
True or False, Submitting to a website sends the values as query parameters?
True
What input field attribute do you need to have in order for the data to be sent when POSTing a form?
A: [name=”Name goes here”]
When clicking on an input label, the user-client is not focusing on the input field, why has that happened?
Because the Label’s attribute For=”” and the Input field’s ID=”” must be included and match.
How do you mark an input field as required
Add the “required” empty boolean attribute
Toggle autocomplete (input field or parent form element)
A: [autocomplete=(true|false)]
Set Max Length
A: [maxlength=NUM]
Which common HTML elements do not have a semantic meaning?
A: span
A: div
List new HTML5 semantic elements
A: header A: nav A: section A: article A: figure A: aside A: main A: footer
What’s an example of an HTML Entity
© = copyright symbol
Correct HTML5 Doctype
!doctype html
How do you add a Javascript file?
E: script
A: [src=”URL”]
Inline Script?
E: script