Skip to content

Latest commit

 

History

History
106 lines (67 loc) · 3.32 KB

File metadata and controls

106 lines (67 loc) · 3.32 KB

web-design-using-react-js-APSSDC

This is an front end project by using reactjs.

it is used for heading 1 (after # dont forget to give space)

it is used for heading 2 (dont forget to give space)

it is used for heading 3

it is used for heading 4

it is used for heading 5
it is used for heading 6

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

unordered list

  • fruties as unordered list name
  • vegetables
    • carrot
    • potato
    • onions

ordered List

  1. Alphabets
  2. digits
    1. Whole Numbers
    2. Natural Numbers
    3. Integers TAJMAHAL Google
def fun():
print ("hai")
Table1 Table2
Tablebody1 Tablebody

Web Design Using React Js

What is web design ?

Creating a website or webpage either static or dynamic is known as Web design

What is web development ?

Maintaining the Website and storing the data (can also perform inserting,deleting)

Software Requirement:

1.Text Editor: Sublime Text3,Visual Code Editor

2.Git

3.Node Server or Web Server For Chrome

Installation and Importance of Git,GitHub.

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