This is an front end project by using reactjs.
font style in italic ( after * dont give space)
font style in bold (after ** dont give space)
font style in both italic and bold (after *** dont give space)
this is font emphasis
- fruties as unordered list name
- vegetables
- carrot
- potato
- onions
- Alphabets
- digits
- Whole Numbers
- Natural Numbers
- Integers Google
def fun():
print ("hai")
Table1 | Table2 |
---|---|
Tablebody1 | Tablebody |
Creating a website or webpage either static or dynamic is known as Web design
Maintaining the Website and storing the data (can also perform inserting,deleting)
1.Text Editor: Sublime Text3,Visual Code Editor
2.Git
3.Node Server or Web Server For Chrome
Git Hub->Git Hub is an distributed Version Control System used to deploy a project and we can also contribute to others project Usage: Open Source and contains versions of our project
Git->Git is a tool used to maintain snapshots of the project,Git Hub Uses Git.
Installation : Link please Click Here GitInstallationlink
After Installing open Git Bash Here
Commands to Synchronize from repository to local folder:
1.git config --global user.name "name" -> This Command configures username in git
2.git config --global user.email "mailid" -> This Command configures mailid in git
git init ->Initializes the git
3.Open your Git Hub Account and create a New Repository ,make it as public and create a Readme.md file(For documentation in markdown)
4.Clone the Repository ->copy the url
5.git clone paste the url ->This Command will create a folder in your desktop with the same name of your Repository
If you observe your local folder it contains two folders 1..git(hidden file) 2.Readme.md file
6.ls->This command will give the list of files
7.touch index.html->create a file in local folder
8.mkdir css ->create a folder in local folder
9.mkdir js ->creates a js folder in local folder
10.mkdir image->creates a image folder in local folder
11.git status->Will check the status of the git
12.git add .->will add all the files from untracking area to tracking
13.git commit -m "commit message"->will commit the changes that we have done
14.git remote->will check the remote(default one is origin)
15.git push remotename master ->will push the file from local folder to repository