@@ -17,25 +17,6 @@ Here's what we'll be doing:
17
17
#### Overview of CSS concepts
18
18
19
19
20
- ## Signing up for Github!
21
- Click the green signup button on the top of this page and open it in a new tab.
22
- Signup for your github then come back to this tab and refresh your browser account
23
- and find your way back to this page!
24
-
25
- ### What is git?
26
- Git is a piece of software that allows you to edit and collaborate on projects
27
- regardless of your teams location. With Git, you and your team can all be working
28
- on the same codebase without having to worry about who's doing what in which order.
29
-
30
- Download Atom
31
- https://atom.io/
32
-
33
- Click "Clone in Desktop"
34
- -Follow Prompts to install
35
-
36
- ## Lets Fork our first project on Github!
37
- Click the fork button on the top right of this page!
38
-
39
20
40
21
## Overview of HTML
41
22
- tags
@@ -45,7 +26,7 @@ Click the fork button on the top right of this page!
45
26
####HTML tags:
46
27
Tags are used to mark up the beginning and end of an HTML element.
47
28
48
- ```
29
+ ``` html
49
30
<div ></div >
50
31
```
51
32
72
53
- id's vs Classes
73
54
- syntax
74
55
56
+ ####Specificity
57
+ What Does CSS Stand for?
58
+
75
59
60
+ ####id's vs Classes
61
+ Classes are used when you need to style multiple elemnets in a document, while
62
+ id's are used to style specific elements on a page.
76
63
64
+ ####Syntax
65
+ Lets look at how to style an element!
77
66
67
+ ``` html
68
+ <p class =" coolThings" >Cool Things</p >
69
+ ```
70
+ Now lets look at the css!
71
+ ``` css
72
+ .coolThings {
73
+ font-size : 24px ;
74
+ }
75
+ ```
76
+
77
+ ## Signing up for Github!
78
+ Click the green signup button on the top of this page and open it in a new tab.
79
+ Signup for your github then come back to this tab and refresh your browser account
80
+ and find your way back to this page!
81
+
82
+ ### What is git?
83
+ Git is a piece of software that allows you to edit and collaborate on projects
84
+ regardless of your teams location. With Git, you and your team can all be working
85
+ on the same codebase without having to worry about who's doing what in which order.
86
+
87
+ Download Atom
88
+ https://atom.io/
89
+
90
+ Click "Clone in Desktop"
91
+ -Follow Prompts to install
92
+
93
+ ## Lets Fork our first project on Github!
94
+ Click the fork button on the top right of this page!
78
95
79
96
#Questions!
0 commit comments