Intro to HTML Flashcards
1
Q
What is the purpose of the Doctype tag?
A
Tells the browser what version of html the page contains
2
Q
HTML is typically rendered in what kind of program?
A
A web browser
3
Q
HTML is typically generated by the client or server?
A
Server
4
Q
HTML is typically displayed on the client or server?
A
Client
5
Q
All HTML tags must have an opening and closing tag: true or false?
A
False
6
Q
What is an example of a tag that does not have a closing tag?
A
img, br, hr, input, meta
7
Q
What is the tag for creating a hyperlink to another page and what is the attribute that specifies the page?
A
< a href=”” >
href is the attribute
8
Q
In the following code, we say the href is an_______ of the “a” tag.
A
attribute