HTML Flashcards
Where do you put non-visible (metadata) content about the HTML document?
the element
Where do you put visible content about the HTML document?
the element
Where do the and tags go in a valid HTML document?
the element
What is the purpose of a declaration?
to declare which language/documenty type the browser will run
Give five examples of HTML element tags
, , , <h1>, </h1><p>, etc</p>
What is the purpose of HTML attributes?
attributes provide additional information about their element(s)
Give an example of an HTML entity
©
®
What is the difference between an ordered list and an unordered list in HTML?
Ordered lists are numbered while unordered lists are bulleted
What three HTML elements do you use to build a description list?
- Description list <dl>
- Description term <dt>
- Description definition </dt><dd></dd></dl>
What is an absolute URL?
A link to a full web address
What is a relative URL?
A link to another page on the same site
What other ways can we use an anchor tag?
- Making an email link
- linking to different part on the same page
- opening a new window
- linking to a different part on a different page
How do you indicate the parent folder in a path?
Use “../” then name of file
How do you indicate the child folder in a path?
Use the name of the child folder, then forward slash “/”, then name of file
How do you indicate the grandparent folder in a path?
Use “../../”, repeating the parent folder and then follow with the name of file