This repository contains a collection of CSS examples demonstrating various styling techniques. Each example focuses on a specific CSS topic, such as selectors, positioning, backgrounds, and more.
- Inline CSS: Demonstrates how to style elements directly within HTML tags.
- CSS Selectors: Examples of ID, class, and grouped selectors.
- Styling Links: Different states of links (hover, visited, active) are styled.
- Forms: Styled forms with input fields, select dropdowns, and submit buttons.
- Positioning: Examples of relative, absolute, fixed, and sticky positioning.
- Floats and Alignment: Demonstrates how to float elements and center content.
- Backgrounds: Use of background colors, images, and repeat properties.
- Lists and Tables: Styled lists and tables with custom colors and layouts.
This repository contains a collection of HTML examples demonstrating various web development techniques. Each example focuses on a specific HTML topic, such as basic structure, forms, lists, and more.
- Basic HTML Structure: Demonstrates the fundamental structure of an HTML document.
- Headings and Paragraphs: Examples of using headings (
<h1>to<h6>) and paragraphs (<p>). - Links and Images: How to create hyperlinks and embed images.
- Lists: Ordered (
<ol>) and unordered (<ul>) lists with custom styles. - Forms: Examples of various form elements like text inputs, radio buttons, checkboxes, and more.
- Special Characters: Use of HTML entities for special characters.
- Formatting: Text formatting with tags like
<b>,<i>,<strong>, and<em>.
This repository contains a collection of JavaScript examples demonstrating various web development techniques. Each example focuses on a specific JavaScript topic, such as event handling, loops, arrays, and more.
- Event Handling: Demonstrates how to handle button clicks and other events.
- Variables and Data Types: Examples of using variables and understanding data types.
- Conditional Statements: Use of
if,else if, andelsestatements. - Arrays: Manipulating arrays with methods like
push,pop,shift, andunshift. - Functions: Creating and using functions with parameters and return values.
- Loops: Examples of
for,while, anddo-whileloops. - Timers: Using
setIntervalandsetTimeoutfor timed events. - Random Numbers: Generating random numbers and applying them in practical scenarios.
This repository contains a collection of PHP examples demonstrating various server-side scripting techniques. Each example focuses on a specific PHP topic, such as array manipulation, file handling, and object-oriented programming.
- Array Manipulation: Filtering and transforming arrays using functions like
array_filterandarray_map. - File Handling: Reading and processing text files, including line counting.
- Object-Oriented Programming: Creating and using classes for tasks like user management and temperature conversion.
- Form Validation: Validating user input in forms, including email and username validation.
- Data Type Handling: Examples of working with different data types and performing type checks.
- Control Structures: Using loops (
for,while,foreach) and conditional statements (if,else) for logic control.