https://github.com/timothyye/sike-css0to1-profile
sike-css0to1-profile practice.
https://github.com/timothyye/sike-css0to1-profile
Last synced: 5 months ago
JSON representation
sike-css0to1-profile practice.
- Host: GitHub
- URL: https://github.com/timothyye/sike-css0to1-profile
- Owner: TimothyYe
- Created: 2015-06-01T05:48:35.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-02T07:14:36.000Z (about 11 years ago)
- Last Synced: 2025-05-19T12:48:14.676Z (about 1 year ago)
- Language: HTML
- Size: 656 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sike.io CSS 0 to 1 Starter Kit
To do the exercises, just edit the files with your favourite editor.
If you want a live-edit experience, install [BrowserSync](http://www.browsersync.io/).
To install BrowserSync:
```
npm install browser-sync@2.7.1
```
To run the live-edit web server:
```
browser-sync start --server --port 4000 --files index.html --files css/main.css
```
It should open the url `http://localhost:4000` immediately. Editing index.html or css/main.css would cause the browser to automatically refresh.
# Publish To Github Pages
You can publish your work on Github so the world can see it. Run this command:
```
git push origin master:gh-pages
```
For example, our repository is [https://github.com/sikeio/css0to1-startkit](https://github.com/sikeio/css0to1-startkit), the page would be accessible at [http://sikeio.github.io/css0to1-startkit/](http://sikeio.github.io/css0to1-startkit/).