This repository contains structured learning materials and practice code for a full web development course. Each major topic is organized into its own Git branch for clarity and separation of concerns.
- HTML
- CSS
- JavaScript
- React
- PHP
- SQL (Database Connections)
- Laravel
Each topic is developed and maintained in a separate branch.
| Branch Name | Content Description |
|---|---|
html |
HTML fundamentals and examples |
css |
Styling, layouts, and responsive design |
javascript |
Core JavaScript concepts and exercises |
react |
React components, hooks, and apps |
php |
PHP basics and server-side scripting |
sql |
Database design, queries, and connections |
laravel |
Laravel framework projects and concepts |
-
Clone the repository:
git clone <repository-url>
-
Switch to a specific branch:
git checkout <branch-name>
Example:
git checkout react
-
Install dependencies (if applicable):
-
For JavaScript/React:
npm install npm start
-
For PHP/Laravel:
composer install php artisan serve
-