Opening tags in HTML can carry ____________, which tell us more about the content of that element. EXAMPLE: <p style="font-family:arial; color:#FF0000;">Some text here...</p>
attributes
What does HTML stand for?
HyperText Markup Language
Your code in Brackets may turn red until you include THIS, if you type in an opening tag.
closing tag
table data
REVIEW: .png, .csv, .eps, .doc, .ai, .pdf are all examples of what? They tell the computer what type of file it is.
extensions
"Structural" markup might include items like h1, h2, h3, etc., while "_________" information might include tags like <address> <cite> <blockquote>. ________ HTML tags provide information ABOUT the contents of those tags that GOES BEYOND just how they look on a page.
Semantic
What is the 'file name' of the URL below?
http://aarfaa.cad.rit.edu/interaction1/project1/aboutme.html
aboutme.html
What are the 3 different types of lists? You must . provide all 3 to get this correct.
1. Ordered lists - each item in the list is numbered.
2. Unordered lists - begin with a bullet point (rather than characters)
3. Definition lists - made up of a set of terms along with the definitions for each of those terms
If the content of a div is right up to the edge of the div, and you want it to be further away from the edge, what property would you need to add to your selector?
padding
To make a link open the users default email client, what do you need to have in your code before your email address? Example:
<a href="_______aarfaa@rit.edu">Contact Alicia</a>
mailto:
If a designer wanted to make all the links on an HTML page appear blue, and then rollover to green, what are the two PROPERTIES in CSS that denote this?
a:link & a:hover
In order to tell the browser to open a link in a new window or tab, the code must specify the what?
target
The <a> (anchor) element uses an attribute called __________________ to indicate the page you are linking to.
href (hypertext reference)
If the main container on your HTML page is set to 70%, and you wish for the container to have equal margins on the left to right, what should your margin-right property be set to?
15%
What 'host server' are we uploading our projects to? Give your answer in the form of a URL.
If a designer places code between <style></style> tags (that look just like this) on an HTML page, what type of code is this? Be specific.
Internal CSS
The "HyperText Transfer Protocol" might be seen with the addition of an S, and sometimes not. If you were asked to input your social security number how should the HyperText Transfer Protocol look?
https://
When you link to a different website, the value of the href attribute will be the FULL web address for the site, which is known as an ___________ URL, not a relative URL.
absolute URL
If you set the max-height of your div to 200px, but the CONTENT of the div is 600px, and you want the content in the div to be scrollable, what property should you set to 'scroll' in your CSS? Example: __________: scroll;}
overflow
URLs cannot contain spaces. URL encoding (javascript) normally replaces a space with a plus (+) sign or with _________ or depending on context, or browser
%20
<link rel="stylesheet" href="________">
In the line of code seen here, what does it denote or tell the browser?
Links to External CSS document
"________________ is the idea that internet service providers like Comcast and Verizon should treat all content flowing through their cables and cell towers equally."
Net neutrality
Folders (subfolders) of a website are sometimes referred to as directories. The main folder that houses all of the folders of the website (subfolders) is called the _____________ folder.
root folder
If an element on an HTML page has its positioning set to __________ it stays exactly where the designer has it positioned (it doesn't move), and doesn't scroll with the other elements or content.
fixed
What entity, as of May 28, 2019, creates the "rules" or universal standards for HTML code?
WHATWG - "The WHATWG was founded by individuals from Apple Inc., the Mozilla Foundation and Opera Software, leading Web browser vendors, in 2004." - WIKI