Skip to content

Instantly share code, notes, and snippets.

@markyv18
Last active March 14, 2017 02:00
Show Gist options
  • Select an option

  • Save markyv18/fd134d9ef3c4d0069efaaef0ed45fd6c to your computer and use it in GitHub Desktop.

Select an option

Save markyv18/fd134d9ef3c4d0069efaaef0ed45fd6c to your computer and use it in GitHub Desktop.

What is the purpose of HTML?

  • create framework of webpages

What is the purpose of CSS?

  • stylize the framework

What are some HTML tags you learned over break? Anything interesting?

  • nav, header, footer <-- new to me

What is the purpose of a class in CSS? an id?

  • specificity of style

Any other interesting ways to select things using CSS?

  • class or type

#HTML

##Skeleton super basic building blocks of a website structure

## call stylesheets and give tab title here no actual elements that are to be displayed go in here

## where the "physical" build of the webpage happens

##Semantic Tags "sections" of the webpage navigation section, header section.... makes it easier to know what you are working on

##Non-Semantic Tags predecessor to the semantic tags. seperating different areas of the web page

#CSS

##(type)selectors in this case will color the text and the background of p elements (<--might not be using "elements" correctly there)

##class selectors more specific than type identify as <p style="....

##IDselectors most specific styling element

##box model dynamic styling for multiple devices

##display property how text is displayed in various forms block - width of block none - hide underline on hover

##floats diagonol indent on padding with location left/right with float

##clearfix extending style to children

##Detour: Lorem Ipsum place holder

@Carmer
Copy link
Copy Markdown

Carmer commented Mar 14, 2017

I'd like to see you flesh out the box model a lot more. Also, go through the spaces, commas and dots section at the bottom. That wi;; be very helpful

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment