1
0
mirror of https://github.com/cssanimation/css-animation-101.git synced 2025-08-09 15:47:14 +02:00

Fixing typo

This commit is contained in:
Donovan Hutchinson
2019-05-19 16:28:18 +01:00
parent 7e3f7411cb
commit ee70e1e147

View File

@@ -9,9 +9,9 @@ We'll cover two ways of doing this: developing in the browser, and developing of
## In the browser
The simplest way to get going for small experiments is to develop online. A site I often use is [CodePen](Codepen.io). Another good one is [JS Fiddle](http://jsfiddle.net/).
The simplest way to get going for small experiments is to develop online. A site I often use is [CodePen](https://codepen.io). Another good one is [JS Fiddle](http://jsfiddle.net/).
For the rest of this course I'll be using [CodePen](http://codepen.io) for examples and it's worth being familiar with the way it works.
For the rest of this course I'll be using [CodePen](https://codepen.io) for examples and it's worth being familiar with the way it works.
CodePen is a coding playground that involves an edit mode where you can make changes to HTML, CSS and JavaScript and see the results immediately. The screen is divided up into four areas. The preview content, the HTML area, CSS and JavaScript. Within each is a settings option that allows you to configure languages (Sass instead of CSS for example) and other cool stuff.
@@ -55,7 +55,7 @@ Register with [CodePen](http://codepen.io). Have a go adding some HTML and CSS,
_Optional:_ If you want to try local development, download local starting files:
* Basic option: [Project starter HTML/CSS files](https://github.com/cssanimation/starter/archive/master.zip)
* Advanced: [Gulp & Sass starter](https://github.com/cssanimation/gulp-sass-starter)
- Basic option: [Project starter HTML/CSS files](https://github.com/cssanimation/starter/archive/master.zip)
- Advanced: [Gulp & Sass starter](https://github.com/cssanimation/gulp-sass-starter)
**Next:** We'll be talking about transitions!