Lesson 1 Flashcards

1
Q

Three common html terms to begin with

A

elements tags attributes

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

what is an element

A

designator that defines the structure and content within a page. <a>s</a>

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

what is an element

A

designators that define the structure and content within a page. <a></a>

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

what is a tag

A

the use of less than and greater than angle brackets surrounding an element<>

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

what is an attribute

A

properties used to provide additional info about an element. id=””, class=”“,href=”“,src=””

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

what is the required structure of all html documents

A

doctype
html
head
body

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

what is the document type declaration

A

!DOCTYPE

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

which element identifies the top of the document, including any metadata (accompanying information about the page).

A

head

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

in which element does all of the visible content of the webpage fall within

A

body

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

what is an element

A

something that defines the structure and content within a page. <a>s</a>

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

what is a tag

A

the use of less than and greater than angle brackets surrounding an element<>

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

what is an attribute

A

properties used to provide additional info about an element. id=””, class=”“,href=”“,src=””

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

what are selectors

A

a selector designates exactly which element or elements within your html to target and apply styles(such as color,size and position)
ex:p{}

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

what do properties do

A

determines the style that will be applied to that element

ex:p{color:…;}

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

what are values

A

the text between the colon and semicolon

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

type selector

A

div{}

17
Q

class selector

A

.class{}

class=””

18
Q

id selector

A
#shayhowe{]
<div>...</div>