EXAM REVIEW Flashcards

1
Q

Write a nav tag that has a heading tag nested inside. Add a style to the heading tag to make it so that it does not show. [ 4 ]

A

< head >
< style >
h1 {
display:none;
}
< /style >
< /head >
< body >

< nav >
< h1 > Navigation Reference Links < /h1 >
< a href=”https://link.org/path/”>LinkName< /a > < br >
< /nav >

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

Why would we use a heading tag in question 1 if we do not show the tag?

A

Heading tags should be applied so that outlines are descriptive.

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

List 5 more HTML 5 “Semantic” tags

A

< header > The top part of a page or section.

< footer > The bottom part of a page or section.

< nav > The place for interfaces like menus.

< main > The main content area (not header, footer, nav).

< article > An article that makes sense on its own.

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

What is the name for the specific type of application we use to upload and download files to and from the server? For instance, Filezilla is this type of application (not a Web Editor):

A

FTP (File Transfer Protocol) such as Filezilla.

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

Write the THREE types of permissions for a Web page or folder and the THREE target user types that complete the permissions chart:

A

Web page or folder are: read, write and execute.

Three target user types are: owner, a group, and other (public).

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

Write a starting form tag that will submit to http://test.html via post

A

< form >
< a href=”http://test.html;” >submit< /a >
< /form >

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

Write an example of CGI format that shows up in the Browser location bar when using GET

A

http://www.example.com/cgi-bin/search.cgi?q=keyword

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

Name FOUR old types of input tags that were around before HTML 5

A

< input type=”text” >
< input type=”password” >
< input type=”submit” >
< input type=”image” >

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

Name FOUR new types of input tags that were added in HTML 5

A

< input type=”email” >
< input type=”search” >
< input type=”range” >
< input type=”color” >

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

Name THREE new input parameter values that were added in HTML 5

A

text, radio, checkbox, hidden and button

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