The-Codesis / simple-static-website

This repository will help beginners who have just completed the Git course and want to apply their theoretical knowledge.
12 stars 62 forks source link

placed </div> at line 221 #42

Open rajchordia14 opened 4 years ago

rajchordia14 commented 4 years ago

update index.html

tushar5526 commented 4 years ago

No, you fixed the wrong tag. See the "span" tag on 221 :) @rajchordia14

tushar5526 commented 4 years ago

Its not good practice to use master branch to make changes. We leave master branch untouched and then make a new branch to work on new features . git checkout -b <your branch name> Read the README.md of this repo Its better to have only one commit for such small errors, you can use git squash to combine those 3 commits into one. Then force push the branch back to remote git push origin <branch-name>