top of page
Search
The Tech Platform
Aug 10, 2021
Create an animated landing page with Tailwind CSS
In this project we are going to build a beautiful tailwind CSS site. This site again will be created using only HTML and CSS and no...
The Tech Platform
Jul 27, 2021
Color Guide in CSS/HTML
With CSS, colors can be specified in different ways: By color names As RGB values As hexadecimal values As HSL values (CSS3) As HWB...
The Tech Platform
Jul 20, 2021
Loading Buttons in CSS
To use the Font Awesome icons, add the following line inside the <head> section of your HTML page: <link rel="stylesheet"...
The Tech Platform
Jul 17, 2021
What are the Different types of CSS.
Cascading Style Sheet(CSS) is used to set the style in web pages that contain HTML elements. It sets the background color, font-size,...
The Tech Platform
Jul 14, 2021
Let’s Build a CRUD Website with HTML, CSS, JavaScript and an External API
In this article, we will give you a tutorial for creating a web application with just only basic HTML, CSS and JavaScript (based on...
The Tech Platform
Jul 6, 2021
Scoping CSS using Shadow DOM
Shadow DOM is part of the DOM, which is capable of isolating JavaScript and CSS. If you have heard of iframes, Shadow DOM is also...
The Tech Platform
Jun 29, 2021
Image Transparency in CSS
Code: <!DOCTYPE html> <html> <head> <style> img.one { opacity: 30%; } img.two{ opacity: 70%; } img.three{ opacity: 100%; } </style>...
The Tech Platform
Jun 22, 2021
Text Shadow in CSS
The Text Shadow property in CSS adds shadows to the text. This CSS property is basically used for the decoration purpose. Each Shadow is...
The Tech Platform
Jun 22, 2021
What are CSS Selectors? What are different types of selectors in CSS with Example.
CSS selectors are used to select the content you want to style. Selectors are the part of CSS rule set. CSS selectors select HTML...
The Tech Platform
Jun 20, 2021
A Brief Introduction About CSS Border Style
CSS border is used to set the border on Elements like Image, Paragraph etc. CSS border properties are used to specify the style, color...
bottom of page