Skip to content

Commit bff19a7

Browse files
changed signup
1 parent c98847b commit bff19a7

File tree

1 file changed

+37
-20
lines changed

1 file changed

+37
-20
lines changed

README.md

Lines changed: 37 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17,25 +17,6 @@ Here's what we'll be doing:
1717
#### Overview of CSS concepts
1818

1919

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

4021
## Overview of HTML
4122
- tags
@@ -45,7 +26,7 @@ Click the fork button on the top right of this page!
4526
####HTML tags:
4627
Tags are used to mark up the beginning and end of an HTML element.
4728

48-
```
29+
```html
4930
<div></div>
5031
```
5132

@@ -72,8 +53,44 @@ are
7253
- id's vs Classes
7354
- syntax
7455

56+
####Specificity
57+
What Does CSS Stand for?
58+
7559

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

64+
####Syntax
65+
Lets look at how to style an element!
7766

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

7996
#Questions!

0 commit comments

Comments
 (0)