Skip to content

Latest commit

 

History

History
66 lines (46 loc) · 1.54 KB

File metadata and controls

66 lines (46 loc) · 1.54 KB

Web Development Course

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.

image

📚 Course Topics Covered

  • HTML
  • CSS
  • JavaScript
  • React
  • PHP
  • SQL (Database Connections)
  • Laravel

Each topic is developed and maintained in a separate branch.

🌿 Branch Structure

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

🚀 How to Use This Repository

  1. Clone the repository:

    git clone <repository-url>
  2. Switch to a specific branch:

    git checkout <branch-name>

    Example:

    git checkout react
  3. Install dependencies (if applicable):

    • For JavaScript/React:

      npm install
      npm start
    • For PHP/Laravel:

      composer install
      php artisan serve