EXAM REVIEW Flashcards
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 ]
< head >
< style >
h1 {
display:none;
}
< /style >
< /head >
< body >
< nav >
< h1 > Navigation Reference Links < /h1 >
< a href=”https://link.org/path/”>LinkName< /a > < br >
< /nav >
Why would we use a heading tag in question 1 if we do not show the tag?
Heading tags should be applied so that outlines are descriptive.
List 5 more HTML 5 “Semantic” tags
< 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.
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):
FTP (File Transfer Protocol) such as Filezilla.
Write the THREE types of permissions for a Web page or folder and the THREE target user types that complete the permissions chart:
Web page or folder are: read, write and execute.
Three target user types are: owner, a group, and other (public).
Write a starting form tag that will submit to http://test.html via post
< form >
< a href=”http://test.html;” >submit< /a >
< /form >
Write an example of CGI format that shows up in the Browser location bar when using GET
http://www.example.com/cgi-bin/search.cgi?q=keyword
Name FOUR old types of input tags that were around before HTML 5
< input type=”text” >
< input type=”password” >
< input type=”submit” >
< input type=”image” >
Name FOUR new types of input tags that were added in HTML 5
< input type=”email” >
< input type=”search” >
< input type=”range” >
< input type=”color” >
Name THREE new input parameter values that were added in HTML 5
text, radio, checkbox, hidden and button