Skip to content

Commit 6ec9fa3

Browse files
added instructor notes and made the css nav work.
1 parent 50afbf0 commit 6ec9fa3

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

CSS/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
body {
5-
font-family: 'Raleway', sans-serif;
5+
font-family: 'Coming Soon', cursive;
66
color: #e5e5e5;
77
font-size: 12px;
88
background:#bfbfbf;
@@ -12,7 +12,7 @@ body {
1212

1313

1414
h1, h2 {
15-
font-family: 'Raleway', sans-serif;
15+
font-family: 'Coming Soon', cursive;
1616
font-weight: 300;
1717
margin:0 0 15px 0;
1818
}

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,25 +73,25 @@ Now lets look at the css!
7373

7474

7575
## What is git?
76-
Cookie Recipie Metaphor
7776
Git is a piece of software that allows you to edit and collaborate on projects
7877
regardless of your teams location. With Git, you and your team can all be working
7978
on the same codebase without having to worry about who's doing what in which order.
8079

8180

81+
Topic: talk about the cookie receipie metaphor
82+
8283
#Sign up for Github!
8384
- Open a new tab in your browser and go to GitHub.com
8485
- Click the green signup button on the top of this page.
8586
- Confirm your account by clicking the confirmation link in your email
8687

87-
8888
#Lets Fork and Clone our first project on Github!
8989
- Click the fork button on the top right of this page!
9090
- Click "Clone in Desktop"
9191
- Follow Prompts to install the GitHub App
9292

9393

94-
#Get a text editor!
94+
#Get the Atom text editor!
9595
- Download [https://atom.io/](Atom)
9696

9797

@@ -102,14 +102,14 @@ on the same codebase without having to worry about who's doing what in which ord
102102
- On the use page, scroll down to number three and copy the link tag provided.
103103
- Paste that link tag in your index.html file with the new link tag you copied from google fonts.
104104
- Copy the code under number four.
105-
- Paste that code into your stylesheet! (BONUS: Where should you paste this?)
105+
- Paste that code into your stylesheet!
106106

107107
##The User wants some changes
108108
- Change the name of the site
109109
- Change all the navigation links & Section Headers
110-
- Embed an image
110+
- Replace my images with your own images
111+
- Push changes to github
111112

112-
##Open Your Project in Atom
113113

114114
##Make some changes
115115

index.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
45
<title>LTCW1</title>
56
<link href="CSS/style.css" rel="stylesheet" type="text/css">
6-
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
7+
<link href='https://fonts.googleapis.com/css?family=Coming+Soon' rel='stylesheet' type='text/css'>
78
</head>
89
<body>
910
<div class="wrap">
1011
<div class="section sTop">
1112
<div class="inner">
12-
<h1 class="title">My amazing one page website</h1>
13-
<h2 class="subtitle">And it's all about mopeds!</h2>
13+
<h1 class="title">Something about seattle</h1>
14+
<h2 class="subtitle">Nobody cares about the east side</h2>
1415
</div>
1516
</div>
1617

@@ -24,7 +25,7 @@ <h2 class="subtitle">And it's all about mopeds!</h2>
2425
</div>
2526
</div>
2627

27-
<div class="section s1">
28+
<div class="section s1" id="s1">
2829
<div class="inner ">
2930
<h1>My Mopeds</h1>
3031
<div class="section">
@@ -33,7 +34,7 @@ <h1>My Mopeds</h1>
3334
</div>
3435
</div>
3536

36-
<div class="section s2">
37+
<div class="section s2" id="s2">
3738
<div class="inner">
3839
<h1>Why Mopeds?</h1>
3940
<h2>Because they are wicked fun!</h2>
@@ -45,7 +46,7 @@ <h2>Because they are wicked fun!</h2>
4546

4647

4748

48-
<div class="section s3">
49+
<div class="section s3" id="s3">
4950
<div class="inner">
5051
<h1>Try Mopeds!</h1>
5152
<h2>My wife Alissa tried mopeds and she loves them!</h2>

0 commit comments

Comments
 (0)