what is the purpose of HTML attributes?
Attributes provide additional information about the contents of an element. They appear on the opening tag of the element and are made up of two parts: a name and a value.
customize html element.
what is an HTML entity?
how do block level elements affect the document flow?
how do inline elements affect the document flow?
what is the difference between unordered list & ordered list?
</ul>
where do you put non visible content about the HTML document?
head tag
where do you put visible content about the html document?
body tag
where do the and tags go in a valid HTML document?
inside the html tags.
what is the purpose of a declaration?
The DOCTYPE declaration is an instruction to the web browser about what version of HTML the page is written in.
is an html list a block element?
yes
what HTML tag is used to link to another website?
<a> (anchor tag). dropping an ‘anchor’ at some point in the html document.</a>
what is an absolute URL?
An absolute link is a hyperlink containing a full URL, which includes all the information needed to find a particular site, page or document or other addressable item on the Internet. This information includes: The protocol to use, such as HTTP (Hypertext Transfer Protocol) or FTP (File Transfer Protocol).
what is a relative URL?
A relative URL is a URL that only includes the path. The path is everything that comes after the domain, including the directory and slug. Because relative URLs don’t include the entire URL structure, it is assumed that when linking a relative URL, it uses the same protocol, subdomain and domain as the page it’s on.
how do you indicate the relative link to a parent directory?
../filename
how do you indicate the relative link to a child directory?
name of child folder/ filename
how do you indicate the relative link to a grand parent directory?
../../filename
how do you indicate the relative link to the same directory?
just use the file name.
what is the purpose of an HTML form element?
HTML form elements are used to capture user input. boundary of the info.
Give five examples of form control elements
text input, radio button, checkbox, drop down list box, multiple select box etc.
Give three examples of type attribute values for HTML input elements
button, checkbox, color, date …
Is an HTML input element a block element or inline element?
inline elements
Is an HTML input element a block element or inline element?
what are the six primary html elements for creating tables?
table, thead, tbody, th, tr, td
what purpose do the thead and tbody element serve?
works for search engines.
-The element is used in conjunction with the and elements to specify each part of a table (body, header, footer). Browsers can use these elements to enable scrolling of the table body independently of the header and footer.