<img src="dog.jpg" alt ="mydoglookingatcamera" width="400px">
Front
How do you link a photo?
Back
open carrot/less than sign
lowercase
Front
What opens and closes a tag AKA what does a tag go inside of? And in what format does a tag have to be?
Back
inline: element that flows inline/horizontally
EX: <strong> <em> <img> <a>
block: elements on their own "block"
EX: <p> <h1-h6> <UL> <OL>
Front
Inline vs. block (floating)
Back
moving to the right 30 px
Front
For margin: h1{margin-left30px} means what?
Back
cursive, times, serif
Front
What is the font-family?
Back
HTML structure
Front
What can you add pictures, videos, text, and links to?
Back
numbers; <OL>
<Li>Ham</Li>
<Li>Turkey</Li>
</OL>
Front
What is an HTML <OL> ? How do you write it?
Back
<div>
you would NOT USE div for a your header or footer
Front
When considering the Grid/Box model, what is an important way to group content; when there's no suitable element to group a set of elements
Back
<footer>
Front
When considering the Grid/Box model, what is at the bottom of every HTML page and can be used to copyright information and title information?
Back
class
PERIOD .
Front
Rather than uniquely identifying one element, you can id several elements as being different from others on the page. What is this?
Back
value
Front
What would the color teal, for example, be called in CSS?
Back
no, but you can put a list inside of a list
Front
Can you put separate tags together? What can you do?
Back
the things we do NOT see (burger toppings)
EX: SEO
Front
What is an HTML head?
Back
holds code together (buns hold a burger together)
Front
What is an HTML tag?
Back
<p> </p>
Front
How do you write an opening and closing paragraph tag?
Back
1) clear:both; will drop down the footer
2) display:inline-block; how you build the grid once we add the margin
Front
What are the 2 things to do when floating?
Back
command e
Front
What do you type in on a mac for "color picker?"
Back
aside
Front
When considering the Grid/Box model, what is content that is located on the side of your main component that relates to the entire page?
Back
section
Front
When considering the Grid/Box model, what groups related content together and usually has its own heading?
Back
<strong></strong>
Front
How do you write in bold?
Back
property
Front
What is color called in CSS?
Back
Utf-8
Front
What is the American keyboard?
Back
#wrapper{max-width:960px;margin:0 auto;}
Front
What's max-width for a wrapper/header?
Back
bullet points
Front
What is an HTML <UL> ?
Back
tag, head, body
Front
What are the three main parts of HTML structure?
Back
id
HASHTAG #
<div id="container">
Front
What uniquely identifies elements from others on a page? means "one" and no two elements have the same value; uniquely identify one element
Back
curly
Front
What kind of brackets are used in CSS?
Back
CSS style
Front
What language is used for colors, borders, fonts, size, and repositioning content?
Back
h1-h6
<h1>hello</h1>
Front
What are the HTML header tags from smallest to largest? Write an example.
Back
a href="http://www.cnn.com">cnn automatic </a>
a href="http://www.cnn.com" target="_blank"</a>
Front
How do you link a link? "Linking"
Back
16px = 1 em
32 px = 2 em
etc
Front
How many pixels is one em? Two?
Back
h1{color:teal;}
h2{color:rgb(255,199,181)}
Front
How do you code a color? How do you change a color?
Back
<br> NO closing tag
Front
How do you make a line break? Is there a closing tag?
Back
padding
Front
What is the process of moving an element within its border?
Back
more than one space
Front
What does HTML not recognize?
Back
add multiple <p> </p> (NOT p1, p2, p3 etc.)
Front
If you want multiple paragraph tags, what do you do?
Back
selector
Front
What is h1 called in CSS?
Back
Margin moves everything but padding moves an element
Front
What's the difference between margin and padding?
Back
<article>
Front
When considering the Grid/Box model, what acts as a container for any selection of a page that could stand alone and be released to the web? any independent piece of content: forum post, comment, blog entry, etc.
Back
<header>
Front
When considering the Grid/Box Model, what is at the top of every page on a website that houses the main navigation?
Back
<em> </em>
Front
How do you write in italics?
Back
A break tag puts things on the next line. A p tag adds a space when it puts it on the next line. <P> tag is a container element whereas <br> tag is empty. <P> tag is used to enter any paragraph whereas <br> tag is used to insert a line break.
Front
What is the difference between a break tag and a paragraph tag?
Back
things we DO see (meat of the burger)
Front
What is an HTML body?
Back
<!DOCTYPE>
index.html
Front
What is the first line of code we write for an HTML document? What else do we write?
Back
<nav>
Front
When considering the Grid/Box model, what contains major navigational blocks on the site like primary site navigation?