- forEach, reduce functions
- page loading times
- Can only do so much with HTML, need CSS
- We can edit class notes
- Keep a time sheet keep track of what we work on each day
- Merging our branches into develop branch
- Branch from develop (name branch by task)
- Work locally in your branch
- Push branch to github
- Make a pull request
- Merge pull request when approved (+1s) (next time 2 comments)
[Git-Reference] (https://git-scm.com/docs)
1)Cascading Style Sheets 2) General vs. specific styling
[W3 Schools - CSS] (https://www.w3schools.com/css/default.asp) [Mozilla - CSS] (https://developer.mozilla.org/en-US/docs/Web/CSS/Reference)
- Color selection for background, text, links
- CSS rules selector declaration property
- Link to stylesheet
- Reset
- style.css --->normalize normalize = all browsers start from the same point file can be pulled in by CDN download file locally
4)CSS items to add to improve site: lists calendar navbar footer table forum background image forms images
1)Inline 2)Add style tag to html 3)Create CSS stylesheet
For normalize.css there are two ways to use the file:
Download at necolas.github.com/normalize.css/ OR GRAB from github at https://github.com/necolas/normalize.css/ Then save normalize.css to your project folder
AND THEN
link to it in the HTML file ABOVE your main style sheet
OR
import into main style sheet "@import 'normalize.css'"
[Normalize] (https://github.com/necolas/normalize.css/) [Treehouse Normalize Video] (https://teamtreehouse.com/library/applying-normalizecss-browser-reset-css)
- Am I editing correct file?
- Order matters
- Inline styling...cause of and solution to all of life’s problems
- Many changes needed to correct for browser differences
- Alignment LEFT CENTER RIGHT
- Responsive…?!?****
- Forms don’t do anything (nothing to process data)
- Begin looking at bootstrap