HTML Flashcards

1
Q

what is html

A

a markup language that is used to create documents for the web

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

what file extension do html pages have

A

.htm or .html

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

what is hypertext

A

text that you click to jump from document to document

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

what is markup

A

a language with a specific syntax that instructs a web browser how to display a page

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

what is a web page

A

a document on the web

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

why is html needed when creating a web page

A

to create the structure of a web page

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

what are hyperlinks

A

links, from a hypertext document, to another location

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

what is html rendering

A

the process of a browser interpreting html tags and displaying the page in its formatted state

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

what two main parts are there to a web page

A

a head section and a body section

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

what is the head section of a web page

A

the section that contains the information about the page and is created using the head element

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

what is the body section of a web page

A

the section that contains the information you actually see in the browser and is created using the body element

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

what elements make up the skeleton of a html web page

A

the html, head, body and title elements

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

what happens when a user clicks a hyperlink

A

the web browser loads the referenced page or jumps to a marked section within the page

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

what three types of lists are there in html

A

ordered, un-ordered and description

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

how do you nest lists

A

place the nested list in a list item element

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

what are ordered lists

A

lists where each item in the list has a set order

17
Q

what are un-ordered lists

A

lists that have no order; bullet list

18
Q

what are description lists

A

lists that contain terms and definitions

19
Q

what is a parent element

A

an element that contains another element

20
Q

what is a child element

A

an element contained within another element

21
Q

what are sibling elements

A

two or more elements that have the same parent element

22
Q

what are character entities

A

named character references used to print any character in html

23
Q

what is the DOM

A

a programming interface for HTML, XML and SVG documents that provides a structured representation of the document as a tree

24
Q

what is an internal link

A

a link to another page in the same website

25
Q

what is an external link

A

a link to a different site that uses an absolute url

26
Q

what is an absolute URL

A

a url that includes the full web address

27
Q

what is the viewport

A

the medium a user views a web page with

28
Q

what is a form handler

A

a program on the web server that manages data sent from a form

29
Q

what is semantics within html

A

the practice of giving content on the page meaning and structure by using the proper element

30
Q

what does semantic html do

A

describes the value of content on a page, regardless of the style or appearance of that content

31
Q

what benefits are there to using semantic html

A

enabling computers, screen readers, search engines, and other devices to adequately read and understand the content on a web page