HTML5 Flashcards

(36 cards)

1
Q

standard markup language used to create web pages

A

HTML

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

HTML represents the ____ part of web design

A

content

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

tag

A

an HTML recognized keyword enclosed in angle brackets <html>

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

element

A

<start>mark up text<end>
</end></start>

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

attribute

A

format of AttributeName=”value”
(<meta></meta>)

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

void element

A

element that has no mark up text, nor the end tag

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

all html docs must start with

A

<!DOCTYPE> declaration

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

T/F: HTML code is case sensitive

A

FALSE

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

head section

A

invisible, container for all head elements, title element required

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

optional head elements

A

meta, style, script

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

body section

A

visible, can use many elements (text, paragraph, image, hyperlink, table, form)

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

Head Section Elements

A

Title
Meta
- charset
- keywords
- description
Style
Script

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

body section elements

A

Heading (h1-h6)
paragraph (strong, em)
linking (a)
internal linking (a with #)
image and image linking (img)
lists
tables
grouping elements (div, span)
line breaks
special characters

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

table elements

A

table, thead, tbody, tr, th, td

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

block-level elements

A

enclosed in invisible rectangular box. always start on new line and take up full width available

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

examples of block-level elements

A

h1-h6, ol, ul, li, p, body, div, table

16
Q

inline elements

A

do not start on a new line, only take up necessary width. can be embedded in line

17
Q

examples inline elements

A

a, img, strong, em, span, br

18
Q

example of paragraph with bold and italicize

A

this is a <strong> paragraph</strong> with <em> lines </em>

19
Q

form element

A

used to collect user input

20
Q

form attributes

A

method, action

21
Q

method

A

specifies the http method type to be used when submitting data (get/post)

22
Q

action

A

specifies a form handler for processing data collected within form when form is submitted

23
Q

form example

A

<form>
</form>

24
an ___ element must be embedded within a form element
input
25
basic input types
text, password, checkbox, radio, hidden, submit, reset
26
advanced input types
color, date, month, week, time, range, email, number, url, search, tel
27
additional form elements for taking user input
TextArea, select, datalist
28
input attributes
attributes that can be used within input element
29
examples of input attributes
name, value, autofocus, placeholder, required, autocomplete, id, class
30
page structure elements/semantic elements
help search engines and user agents understand importance and context of page content
31
page structure elements examples
header, time, nav, figure, figurecaption, article, summary, details, section, aside, mark, wbr
32
header element
page can have multiple header elements, creates header for each sectioning element. usually includes heading element (h1). page can only have one head element
33
nav
groups navigation links
34
article element
mark a standalone content structure that can be taken out to other pages (article)
35
summary and details elements
summary element displays right-pointing arrow next to summary. when summary is clicked, arrow points downward and shows details element