NOTE:- you can create the UI in which ever techstack you wish
- You can also use CSS Flexbox & form handling.
- Utilize JavaScript DOM manipulation functionalities & CSS variables.
https://github.com/your_username/MLSC_WEB_DEV_TASK.git- Move into the project directory:
cd MLSC_WEB_DEV_TASK
git checkout -b "your-branch-name"-
Open the project in your preferred code editor (e.g., VS Code).
-
Add, edit, or improve the files as needed.
-
Save your changes and check that everything works.
git add .
git commit -m "commit_message"git push origin <your-branch-name>- Click “Compare & pull request”.
- Make sure the base repostitory is:-
base repository: <original-repo-owner>/<repository-name> base branch: main compare branch: <your-branch-name>
- For Ex:-
or
ReactHTML
- To avoid merge conflicts, regularly sync your fork:
git remote add upstream https://github.com/<original-repo-owner>/<repository-name>.git
git fetch upstream
git checkout main
git merge upstream/main
git push origin main