top of page
Search

The Tech Platform
Oct 20, 2021
7 Alternatives to the <div> HTML Tag
“The div element has no special meaning at all…Authors are strongly encouraged to view the div element as an element of last resort, for...

The Tech Platform
Oct 19, 2021
REMOVE INLINE CSS FROM HTML FILES
What does the script do? 1. The script recursively scans all html files in a directory 2. For each html file, it a. scans for ‘style’...

The Tech Platform
Oct 11, 2021
Upload And Download Multiple Files Using .Net 5.0 Web API
Begin with creating an empty web API project in visual studio and for target, framework choose .Net 5.0. No external packages were used...

The Tech Platform
Oct 7, 2021
Write a Program in C++ to check whether the given Number is Prime or Composite Number.
Prime Number A prime number is a number that can only be divided by itself and 1 without remainders. A prime number cannot be divided by...

The Tech Platform
Oct 7, 2021
How to Write a Configuration file in Python
When we design software, we normally put a lot of effort into writing high-quality code. But that’s not enough. A good software should...

The Tech Platform
Sep 25, 2021
How Does CSS Work?
In this article, I want to teach you and show you the different levels of CSS in the browsers, how they work, and how we can control...

The Tech Platform
Sep 25, 2021
Arguments in C#
In C#, arguments can be passed to parameters either by value or by reference. Passing by reference enables function members, methods,...

The Tech Platform
Sep 20, 2021
Header Files in C/C++
A header file is a file with extension .h which contains C function declarations and macro definitions to be shared between several...


The Tech Platform
Sep 8, 2021
What are the Common Causes of JavaScript Errors ? How to Avoid Them?
JavaScript is a widely used and essential programming language for web development. It has evolved significantly, with the introduction...

The Tech Platform
Sep 6, 2021
Write a C program to display Alphabets (a - z) and (A - Z) using loop
Loops can be used to perform repetitive tasks efficiently and one such task is displaying the entire range of alphabets. In this article,...
bottom of page