meetmarvelous / DEVBLOG

DEVBLOG is a blog website template created using HTML5, CSS3, and JavaScript. Based on the thought of producing templates for folks to apply later in their projects in order to lessen the amount of time spent building user interface for their blog site

Home Page:https://github.com/meetmarvelous/DEVBLOG

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DEVBLOG

DEVBLOG is a blog website template created using HTML5, CSS3, and JavaScript. Based on the thought of producing templates for folks to apply later in their projects in order to lessen the amount of time spent building user interface for their blog site

Contributor Rules

Are we lacking any of your favorite features, which you believe you can add If yes, We welcome you to aid to this project and make it better. To start donating, follow the steps mentioned below:

  1. Create Issues.

  2. Fork this repository.

  3. Clone your forked copy of the project:
    git clone https://github.com/YourGithubUsername/DEVBLOG.git

  4. Navigate to the project directory:
    cd DEVBLOG

  5. Create a new branch:
    git checkout -b YourBranchName

  6. Make changes in source code:

  7. Stage your changes and commit:
    git add .
    git commit -m "<your_commit_message>"

  8. Push your local commits to the remote repo:
    git push origin YourBranchName

  9. Create a PR

  10. If someone will contribute to this repository, then those modifications will not be reflected in your local # repository. For correcting that:

  11. Setup a reference(remote) to the original repository to obtain all the changes from the remote:
    git remote add upstream https://github.com/meetmarvelous/DEVBLOG.git

  12. Check the remotes for this repository :
    git remote -v

  13. Fetching from the remote repository will bring in its branches and their relevant commits:
    git fetch upstream

  14. Make sure that you're on your master branch:
    git checkout main

  15. Now that we have downloaded the upstream repository, we want to integrate its modifications into our local branch. This will bring that branch into sync with the source, without losing our local modifications :
    git merge upstream/main

About

DEVBLOG is a blog website template created using HTML5, CSS3, and JavaScript. Based on the thought of producing templates for folks to apply later in their projects in order to lessen the amount of time spent building user interface for their blog site

https://github.com/meetmarvelous/DEVBLOG

License:MIT License


Languages

Language:HTML 81.3%Language:CSS 18.7%