top of page
Search


Write a JavaScript Program to find the Current Date and Time.
Code: <!DOCTYPE html> <html> <body> <h2>Today's Date and Time using javascript</h2> <p id="demo"></p> <script> const d = new Date();...

The Tech Platform
Jun 13, 2021


Write a Program to Create Empty Star Pattern in Python
Code: n = int(input('Enter the number of rows:')) i = 1 while i <= n: j = n while j > i: # display space print(' ', end= ' ') j -= 1...

The Tech Platform
Jun 13, 2021


Write a Program to make Star Design Pattern in Python.
Patters in python are printed using for loops. Different numeric, alphabetic or symbolic patterns can be formed using these loops by...

The Tech Platform
Jun 13, 2021


Class vs Struct — C#
The C# language is an extensive thing to learn and any dedicated developer may spend several years studying and learning the language and...

The Tech Platform
Jun 3, 2021


Write a Program to Convert Celsius to Fahrenheit in JavaScript
Code: <!DOCTYPE html> <html> <body> <h2>JavaScript Celcius to Fahrenhet</h2> <p>Insert a number into one of the input fields below:</p>...

The Tech Platform
Jun 2, 2021


Write a Program to Find the Length of the String in JavaScript.
Code: <!DOCTYPE html> <html> <body> <h2>Program to Find the length of the String </h2> <p>Length of the String <b>"Welcome to The Tech...

The Tech Platform
Jun 2, 2021


CSS :hover Selector ( Select and style unvisited, visited, hover, and active links:)
Below is the example of the CSS :hover Selector (visited, hover and selected links) Code: <!DOCTYPE html> <html> <head> <style> /*...

The Tech Platform
May 30, 2021


Write a Program to Print Down Triangle Star Pattern in Java
Code: import java.util.Scanner; public class DownTrianglePattern { public static void main(String[] args) { int i, j, k, rows=9;...

The Tech Platform
May 30, 2021


CSS Text Effects with Example
In CSS Text Effects we have following Properties: text-overflow word-wrap word-break writing-mode Text-Overflow The CSS text-overflow...

The Tech Platform
May 26, 2021


Flashing Neon Text Using CSS and HTML
HTML <div class="area">âš The Tech Platform âš </div> CSS @import url(https://fonts.googleapis.com/css?family=Open+Sans); body {...

The Tech Platform
May 26, 2021
bottom of page
