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
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