Skip to content

Commit c98847b

Browse files
update readme
1 parent 06fbab0 commit c98847b

File tree

2 files changed

+30
-33
lines changed

2 files changed

+30
-33
lines changed

README.md

Lines changed: 29 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Learn-To-Code-Week-1
22

3-
## Ground Rules
4-
1. Ask at least one question
5-
2. Help neighbors if you are ahead and they are struggling
6-
3. Ask another question
73

84

95
## Overview
@@ -34,48 +30,49 @@ on the same codebase without having to worry about who's doing what in which ord
3430
Download Atom
3531
https://atom.io/
3632

37-
Mac:
38-
Download Homebrew (if you have a mac)
39-
http://brew.sh/
40-
41-
Download Git
42-
```brew install git```
43-
44-
Windows:
4533
Click "Clone in Desktop"
4634
-Follow Prompts to install
4735

36+
## Lets Fork our first project on Github!
37+
Click the fork button on the top right of this page!
38+
4839

40+
## Overview of HTML
41+
- tags
42+
- elements
43+
- attributes
4944

45+
####HTML tags:
46+
Tags are used to mark up the beginning and end of an HTML element.
5047

51-
Setting up git to work with your github account https://help.github.com/articles/set-up-git/#setting-up-git
48+
```
49+
<div></div>
50+
```
5251

53-
Setting up your SSH Keys: https://help.github.com/articles/generating-ssh-keys/
52+
####HTML elements:
53+
An element in HTML represents some kind of structure, generally and element
54+
consists of a start tag, content, and an end tag.
5455

55-
## Lets Fork our first project on Github!
56-
Click the fork button on the top right of this page!
56+
```html
57+
<p>This is an element, it consists of p tags and content.</p>
58+
```
5759

60+
####HTML attributes:
61+
HTML attributes generally appear as name-value pairs. The most common attributes
62+
are
63+
- id "id is used on only a single element"
64+
- class "class can be used on multiple elements"
65+
- src "provides the location of an asset that element needs"
66+
- href "specifies a link destination"
5867

59-
## Overview of HTML
60-
1. Talk through index.html file
61-
a. Tags
62-
b. Structure of an HTML page
63-
c. Headings, Div's, img's and href's
64-
2. Edit index.html file
65-
a. don't be Scared!
66-
3. Write a commit message
67-
4. Commit file
6868

6969

7070
## Overview of CSS
71+
- Specificity
72+
- id's vs Classes
73+
- syntax
74+
7175

72-
1. Talk through style.css file
73-
a. Tags VS Classes
74-
b. CSS Heirarchy
75-
c. inline styling
76-
2. Switch css reference in the index.html page to style.css
77-
3. Change the background color
78-
4. Change the font by finding a google font.
7976

8077

8178

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
</head>
99
<body>
10-
<div class="wrap ">
10+
<div class="wrap q
1111
<div class="section sTop">
1212
<div class="inner">
1313
<h1 class="title">My amazing one page website </h1>

0 commit comments

Comments
 (0)