
Explore how to include CSS in HTML using inline styles, embedded styles, and external style sheets, and learn selectors and inheritance for page-wide or targeted styling.
Discover the basics of cascading style sheets (css) and how they shape page appearance. Understand selectors, cascading behavior, and benefits like easier maintenance and faster loads.
Embed styles in the head with a style tag, using color and font-family rules. Style the h1 and body elements to render blue and green text, illustrating basic css syntax.
Explore styling text with CSS fonts, including font family fallbacks, weight, style, variant, and size. Apply bold, italic, small caps, and shorthand font properties for consistent typography.
Explore how to style text with CSS, including color, direction, letter spacing, word spacing, and text indent. See examples of text decoration, text transform, and text shadow to enhance typography.
Explore how to style hyperlinks using css by targeting the anchor tag, removing underlines, and applying colors for unvisited, visited, hover and active states to control link appearance.
Learn how css layers use z-index to stack absolutely positioned elements. See a practical example with three colored divs to demonstrate top-to-bottom order.
Discover how to customize css lists by applying list style types such as disk, circle, square, and roman or alpha numerals, with inline, vertical, none, and nested list options.
Learn how CSS animation uses keyframes to transition a red box from red to yellow to green. Explore controlling duration, delay, iteration count, and direction, including alternate and reverse.
Explore CSS 2D transform techniques, including rotate, skew, and translate along the x and y axes, with practical examples of clockwise and anti-clockwise rotations, and upcoming animation demonstrations.
Learn how CSS 3d transformations apply rotation along the x, y, and z axes using rotateX, rotateY, and rotateZ on a div box, with practical examples.
Master four CSS color methods—hex codes, short hex, RGB values, and color keywords—and apply them to text or background, using red, green, and blue to mix hues.
Explore CSS colors in this lesson by using rgb and rgba values, adjusting opacity, and working with hsl for hue, saturation, and lightness to create various shades.
Explore CSS cursors to change the mouse pointer for loading indicators, text, hyperlinks, and resize handles, and understand browser differences in cursor rendering.
Master CSS padding to control the distance between text and borders using top, bottom, left, and right values. Learn single, two, and three-value syntax with pixels and percent for spacing.
Apply absolute, relative, and fixed positioning to control element placement, referencing coordinates, and observe how fixed elements stay visible during scrolling.
Explore how to set and constrain element dimensions with CSS by adjusting height, width, and border-related sizing, including min-height, max-height, min-width, and max-width, while considering padding and margins.
Explore how to create rounded corners with CSS border-radius, applying one radius to all corners or assigning different radii per corner, including examples with color, borders, and images.
Learn how to control content visibility with CSS, showing or hiding elements at runtime, using the visibility property. Explore hover effects and simple paragraph examples.
Learn to handle content overflow by adding vertical, horizontal, or both scrollbars to a box using the CSS overflow property; implement a scrollable box with defined dimensions.
Explore CSS selectors, including the name selector, class selector, ID selector, and universal selector, and see how to apply embedded style sheets to headings, paragraphs, and nested elements.
Explore CSS background basics, applying colors and images to paragraphs or the whole document, and control repetition, positioning, and fixed attachment for dynamic page designs.
Learn to create CSS gradients using linear and radial techniques, with multiple color stops, directional options (top-to-bottom, left-to-right, diagonal), and repeating radial gradients applied to a div.
Explore practical image formatting in css by styling images with the img tag, using the style attribute to apply borders—dotted red, dashed, or solid green—for an attractive web page.
Design CSS borders for paragraphs and divs with varied widths and colors. Explore border styles like solid, dashed, double, groove, ridge, inset, hidden, and dotted through practical code examples.
Explore how JavaScript serves as a client-side scripting language embedded in HTML, enabling validations, animations, and interactive web pages, while highlighting its dynamic typing, multi-paradigm nature, and browser-based execution.
Explore JavaScript arrays as fixed-size memory blocks allocated with new, using zero-based indices to store and read values, and apply bubble sort to order them.
Declare and use JavaScript variables with var, store strings, numbers, and decimals, grasp local versus global scope, understand loose typing, and print with document.write.
Discover how to run code based on conditions using JavaScript conditional statements, including if else and switch, with how conditions, variables, and operators control execution.
Learn how if, else if, and else control flow in JavaScript evaluates conditions, converts string inputs to numbers, computes a percentage, and assigns grades A, B, C, or D.
Learn how JavaScript iteration statements create loops that run code multiple times under a condition, such as finding even numbers from 1 to 100, and manage loop termination.
Learn how the JavaScript for loop uses initialization, condition, and increment to control iterations, with examples like printing 1–10 and summing evens up to 100.
Explore how a while loop runs until a boolean condition is true, controlling iterations. See a practical example counting digits by dividing by 10 and truncating decimals.
Master the JavaScript do-while loop by learning how it guarantees one execution before condition check, and apply it to user interaction scenarios like pin entry with a three-attempt limit.
Explore JavaScript loop control statements, using break to terminate a loop and continue to skip iterations, illustrated with a for loop from 1 to 10 and practical examples.
Explore the JavaScript switch statement, using single-character input to classify vowels and consonants, with multiple cases, a default block, and direct case matching.
Learn to use JavaScript operators, including assignment, arithmetic, and unary forms; understand operator precedence and shorthand, such as +=, and pre/post increment and decrement with practical examples.
Explore how to use JavaScript logical operators (and, or, not) and the ternary operator to evaluate username and password checks, producing welcome or invalid user outcomes.
Explore JavaScript comparison operators, including equals, not equals, greater than, less than, and their inclusive forms, all returning booleans in expressions, demonstrated with 100 versus 10.
Learn how JavaScript functions enable modular, reusable code by defining functions, passing parameters, returning values, and invoking them through events like button clicks.
Explore JavaScript events and event-driven programming by wiring DOM events such as onload, mouseover, and mouseout to update image sources and other elements for responsive web interfaces.
Master JavaScript error handling with try, catch, and finally to manage runtime exceptions and ensure cleanup after external connections or data reads.
Learn how cookies enable client-side state management in JavaScript by creating session and persistent cookies, storing form values with document.cookie, and practical implementation via a simple name form.
Learn to build a client-side image slideshow with JavaScript using setInterval to cycle through four images, pause on hover, and start on page load, without any page postbacks.
Learn how to create a JavaScript object with properties like topic, trainer, and mode, access them with dot notation, and read values using a for-in loop and split method.
Learn to navigate between web pages using JavaScript page redirection with window.location, triggering redirects on events or after a timeout via setTimeout.
Explore the basic syntax of PHP, write a simple hello world script, and run it from the command line or as a web page using a local web server.
Explore the difference between client-side JavaScript and server-side PHP, illustrating how each computes and displays dates, with localhost versus remote clients and time zone effects.
Explore console input and output in PHP using standard input and output streams. Read integers with a scanner-like function and display results with printf, via command-line execution.
Explore PHP arithmetic operators by testing addition, subtraction, multiplication, division, integer division, and increment/decrement on sample variables, and verify outcomes in a running script.
Learn PHP comparison operators such as equal to, not equal to, greater than, less than, greater than or equal to, and less than or equal to, returning true or false.
Explore PHP assignment operators, including = and cumulative operators such as +=, -=, *=, /=, and %=, with practical examples showing how values update.
Explore the PHP conditional (ternary) operator, compare two expressions based on a condition, and see how ? : acts as a short form of an if statement.
Explore how PHP functions handle arguments with call by value and call by reference, set default parameters, accept variable numbers of arguments, and return values to callers.
Explore how the break statement terminates a loop in PHP by stopping execution as soon as a condition is met, such as a random number equaling five.
Explore how the continue statement influences a PHP while loop by skipping current iteration and starting the next, contrasting with break, using a random number example to show conditional printing.
Learn how PHP decision making works by using if, elseif, else and switch statements, with coalesce and rand to generate numbers and control flow through blocks and break statements.
Explore the PHP while loop by watching its execution from i values 0 to 9 and using a random number generator to loop until x equals 5.
This lecture demonstrates the PHP for loop syntax with initialization, condition, and increment, including three examples: printing numbers from 1 to 10, random termination, and traversing a five-element array.
Demonstrates using the MySchool API with PHP to connect to a MySQL database, create databases and tables, insert records via forms, and read data with select queries.
Explore the mysqli API in PHP through procedural and object-oriented approaches to connect to a database, create databases and tables, insert data, and display records from the employee table.
Explore inheritance in PHP by extending a parent student class with a child engineering student class, reusing protected members, passing constructor arguments, and overriding get details to add branch.
Create and manipulate PHP objects with a books class, using a constructor, setters and getters, and a get details method to display title and price, then sum prices of objects.
Explore PHP 7 anonymous classes by creating an unnamed class with a constructor that sets X and adds and subtracts. With X set to 10, add 20 yields 30.
Learn how PHP cookies are set and read using setcookie, a post form, and a get cookie script; pass data with $_POST and retrieve with $_COOKIE.
Explore file input and output in bhp, showing how to write to a new file in write mode and read back lines using open, fget, and end-of-file checks.
Explore PHP error handling by using die to terminate on error, check with file_exists, open files conditionally, and implement a custom error handler with set_error_handler and error_reporting.
Explore PHP exception handling by simulating division by zero, using try-catch blocks, and implementing a custom exception handler to manage errors gracefully.
Understand how PHP processes form data using get, post, and request. See how name and age are sent, how get appends to url, and how post or request retrieves them.
Discover cryptographically secure pseudo random number generators in PHP 7, using random bytes and random integer, converting binary to hex for readable output, and observing changing results across runs.
Learn how PHP scalar type declarations enforce argument and return types, using coercive and strict modes, with declare(strict_types=1) and example function average. See how non-integer inputs trigger strict errors.
Explore PHP 7's null coalescing operator, using the double question mark to return a set variable or fallback value, and see how it replaces the ternary operator in form handling.
Explore the PHP 7 spaceship operator, a three-valued, two-way comparison operator that returns -1, 0, or 1 for numbers, floats, and strings, with practical usage examples.
Explore the PHP polymorphism concept by implementing interfaces and abstract classes, overriding methods, and calculating areas with rectangle and circle examples.
Learn how to create and read PHP session variables by submitting a form to a self-processing script, using session_start and $_POST to set user and display a hello message.
Learn CSS And Javascript And PHP Complete Course For Beginners
section 1- CSS course with basics and advanced concepts of CSS
Ever wonder how the latest website designs are made? Cascading Style Sheets (CSS) are the main coding files used to layout a website and its design. CSS 3 is the latest in styling standards, and it brings several new properties and declarations you can use to make your website design more easily created. CSS is currently the only standard in website design that plugs directly into your HTML, even the latest HTML 5 standards. With CSS 3 and HTML 5, you can create the latest interactive pages for your website viewers.
This course shows you how to create CSS classes from a beginner's level. It starts off with basic HTML declarations, properties, values, and how to include a CSS style sheet with your HTML code. For those of you who are new to CSS and HTML, we show you step-by-step how to create a CSS file and include it in your HTML code, even if you use a cloud server for your hosting.
We show you how to position your elements, layout your elements relative to your documents, and style your HTML using predefined CSS values. We introduce you to the common CSS styling that you'll need when you start off designing your pages. If you want to get to know CSS and website design, this course is meant for you, and it can be used by anyone who hasn't even seen one line of CSS code yet. We focus on the latest CSS 3 and HTML 5 standards, so you get the latest when coding your website pages instead of focusing on older code.
There are no prerequisites. Anyone Can join this course. It is recommended though that individuals have some basic computer programming knowledge.
Course Topics
Introduction to CSS
inclusion Of CSS In HTML
CSS syntax
CSS styling Text
CSS page backgrounds
CSS 2D transform
CSS 3D transform
CSS animation
and more....
Section 2- learn javascript programming language
The course is created with thorough, extensive, but easy-to-follow content that you’ll easily understand and absorb.
The course starts with the basics, including JavaScript fundamentals, programming, and user interaction.
The curriculum is going to be very hands-on as we walk you from start to finish to become a professional Javascript developer. We will start from the very beginning by teaching you Javascript basics and programming fundamentals, and then execute into real-life practice and be ready for the real world.
While Javascript is complicated for beginners to learn, it is widely used in many web development areas.
This course gets you started with an introduction to JavaScript. It assumes that you're new to the language, so it gets you started with basic functionality such as creating functions, creating variables, and calling these lines of code from your standard HTML pages. It talks about events and triggers for custom event handling. It talks about pattern matching, searching for text within a page, flow control, and the document object model (DOM). We start off with the basics and move on to more complex functionality such as arrays and objects. We then discuss how to script common elements with JavaScript such as forms and tables. At the very end, we discuss major libraries such as Ajax, which allows you to make asynchronous calls to server-side scripts without reloading the web page in the server.
Master the fundamentals of writing Javascript scripts
Learn core Javascript scripting elements such as variables and Objects
Discover how to work with lists and sequence data
Write Javascript functions to facilitate code reuse
Use Javascript to read and write files
Make their code robust by handling errors and exceptions properly
Search text using regular expressions
The topics covered in this course are:
* javascript course contents:
Javascript introduction
Javascript array
Javascript variables
Javascript functions
Javascript objects
Javascript control statements
Javascript cookies
Javascript loop statements
Javascript data structures
Javascript error handling
Javascript regular expressions
section 3- learn PHP programming language
In this section, we will learn the basic structure of a web application, and how a web browser interacts with a web server. You'll be introduced to the request/response cycle, including GET/POST/Redirect. You'll also gain an introductory understanding of Hypertext Markup Language (HTML), as well as the basic syntax and data structures of the PHP language, variables, logic, iteration, arrays, error handling, and superglobal variables, among other elements.
The topics covered in this PHP course are:
PHP various operator types
PHP arrays
PHP conditional statements
PHP loops
PHP function statements
PHP decision making
PHP file Input and Output
PHP web concepts
PHP MySql API
PHP CSPRNG
PHP scalar declaration
Thank you see you inside the course