From b11af87cda1cac160d05e8c4a6f423c9ee8a33c1 Mon Sep 17 00:00:00 2001 From: Makara <152614418+soreungmakara2@users.noreply.github.com> Date: Wed, 6 Dec 2023 21:52:02 +0700 Subject: [PATCH] Add files via upload --- README.md | 11 +++++++++-- index.html | 20 ++++++++++++++++++++ styles.css | 17 +++++++++++++++++ 3 files changed, 46 insertions(+), 2 deletions(-) create mode 100644 index.html create mode 100644 styles.css diff --git a/README.md b/README.md index 56ac28a..f479026 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,9 @@ -# Soerungmakara -Makara +### Well hello there! + +This repository is meant to provide an example for *forking* a repository on GitHub. + +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. + +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. + +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: diff --git a/index.html b/index.html new file mode 100644 index 0000000..a83618b --- /dev/null +++ b/index.html @@ -0,0 +1,20 @@ + + + + + + Spoon-Knife + + + + + + + + +

+ Fork me? Fork you, @octocat! +

+ + + diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..9b85284 --- /dev/null +++ b/styles.css @@ -0,0 +1,17 @@ +* { + margin:0px; + padding:0px; +} + +#octocat { + display: block; + width:384px; + margin: 50px auto; +} + +p { + display: block; + width: 400px; + margin: 50px auto; + font: 30px Monaco,"Courier New","DejaVu Sans Mono","Bitstream Vera Sans Mono",monospace; +}