top of page
Search
The Tech Platform
May 20, 2021
Creating the Typing Effect in HTML
Below is the Example of creating the typing effect like "TYPEWRITER". Code: <!DOCTYPE html> <html> <body> <h2>This is the Example of...
The Tech Platform
May 13, 2021
How to insert spaces/tabs in text using HTML/CSS?
You can use the non-breaking space ( ) ( ) and ( ) character entity to insert a space in HTML. The non-breaking space is a...
The Tech Platform
May 10, 2021
Find yesterday’s, today’s and tomorrow’s date in Python
We can handle Data objects by importing the module datetime and timedelta to work with dates. datetime module helps to find the present...
The Tech Platform
May 9, 2021
Write the Program to get the Current Time in Python
There are Multiple of ways through which you can get the current time and this is one of simplest way. from datetime import * import pytz...
The Tech Platform
May 8, 2021
How to Create a Loader in CSS
A loader is a visual indicator that informs the user that content is being loaded. How to Create a simple Loader Here's an example of how...
The Tech Platform
May 8, 2021
Write C++ Program to Add two numbers.
#include <iostream> using namespace std; int main() { int x, y; int sum; cout<<"Adding Two Numbers"<<endl; cout << "Enter First number:...
The Tech Platform
May 8, 2021
Write C++ program to Multiply two Numbers.
#include <iostream> using namespace std; int main() { int x, y; int sum; cout<<"Multiplying Two Numbers"<<endl; cout << "Enter First...
The Tech Platform
May 8, 2021
Write C++ Program to Reverse the Digits of given Integer.
#include <iostream> using namespace std; int reverse_int(int x) { int res = 0; while(x != 0) { int pop = x % 10; x = x / 10; int...
The Tech Platform
May 8, 2021
How to add Tables in HTML.
The HTML tables are created using the <table> tag in which the <tr> tag is used to create table rows and <td> tag is used to create data...
The Tech Platform
May 4, 2021
How to Design Stitched Glowing Effect for Button using HTML and CSS ?
The stitched glowing effect is generally used in the design of classical or retro-themed websites. You can also call it a Denim effect if...
bottom of page