This project includes practice codes of HTML, CSS, Bootstrap, PHP, Angular, and FastAPI.
HTML is a markup language used for creating web pages. The practice codes included in this project cover basic HTML tags, forms, tables, and more.
To run the HTML practice codes, simply open the HTML files in your web browser.
CSS is used for styling web pages. The practice codes included in this project cover basic CSS properties, selectors, and responsive design.
To run the CSS practice codes, simply open the CSS files in your web browser.
Bootstrap is a popular CSS framework used for creating responsive and mobile-first websites. The practice codes included in this project cover the Bootstrap grid system, typography, forms, and more.
To run the Bootstrap practice codes, you'll need to have the following installed:
- A text editor (such as Visual Studio Code)
- A web browser (such as Google Chrome)
Then, open the HTML files in your web browser.
PHP is a server-side scripting language used for creating dynamic web pages. The practice codes included in this project cover basic PHP syntax, variables, operators, control structures, and more.
To run the PHP practice codes, you will need to set up a local web server. You can use XAMPP or WAMP for this purpose.
This is a JavaScript project that includes various practice codes and examples.
To use this project, you'll need to have Node.js installed. You can download it from the official website: https://nodejs.org/
Once you have Node.js installed, clone this repository to your local machine and navigate to the project directory. Then, run the following command to install the dependencies:
npm install
This project includes several JavaScript files with different examples and practice codes. To run any of these files, use the following command:
node filename.js
Replace filename.js
with the name of the JavaScript file you want to run.
Angular is a popular web application framework used for creating single-page applications. The practice codes included in this project cover Angular components, templates, services, routing, and more.
To run the Angular practice codes, you'll need to have the following installed:
- Node.js
- Angular CLI (version 11 or higher)
To get started, clone this repository to your local machine and navigate to the project directory. Then, run the following commands:
# Install Angular dependencies npm install
To run Angular, use the following command:
ng serve
FastAPI is a modern, fast (high-performance) web framework for building APIs with Python 3.7+ based on standard Python type hints. The practice codes included in this project cover basic FastAPI syntax, routing, and more.
To run the FastAPI practice codes, you'll need to have the following installed:
- Python (version 3.7 or higher)
- FastAPI (version 0.63.0 or higher)
To get started, clone this repository to your local machine and navigate to the project directory. Then, run the following commands:
# Install FastAPI dependencies pip install -r requirements.txt
To run FastAPI, use the following command:
uvicorn main:app --reload
If you'd like to contribute to this project, please follow these steps:
- Fork this repository
- Create a new branch (
git checkout -b new-branch-name
) - Write your code and tests
- Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin new-branch-name
) - Create a new Pull Request