├── README.md ├── index.html └── styles.css /README.md: -------------------------------------------------------------------------------- 1 | ### Well hello there! 2 | 3 | This repository is meant to provide an example for *forking* a repository on GitHub. 4 | 5 | Creating a *fork* is producing a personal copy of someone else's project. Forks act as a sort of bridge between the original repository and your personal copy. You can submit *Pull Requests* to help make other people's projects better by offering your changes up to the original project. Forking is at the core of social coding at GitHub. 6 | 7 | After forking this repository, you can make some changes to the project, and submit [a Pull Request](https://github.com/octocat/Spoon-Knife/pulls) as practice. 8 | 9 | For some more information on how to fork a repository, [check out our guide, "Forking Projects""](http://guides.github.com/overviews/forking/). Thanks! :sparkling_heart: 10 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |16 | Fork me? Fork you, @octocat! 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin:0px; 3 | padding:0px; 4 | } 5 | 6 | #octocat { 7 | display: block; 8 | width:384px; 9 | margin: 50px auto; 10 | } 11 | 12 | p { 13 | display: block; 14 | width: 400px; 15 | margin: 50px auto; 16 | font: 30px Monaco,"Courier New","DejaVu Sans Mono","Bitstream Vera Sans Mono",monospace; 17 | } 18 | --------------------------------------------------------------------------------