Write a program Validation using Javascript
<html> <head> <script> function myFunction() { // Get the value of the input field with id="numb" let x = d...
Read more »<html> <head> <script> function myFunction() { // Get the value of the input field with id="numb" let x = d...
Read more »<html> <head> <title>find number of vowels in a string in JavaScript</title> <script type="text/javascript...
Read more »<!doctype html> <html> <head> <script> function Sub() { var numOne, numTwo, sum; numOne = parseInt(document.get...
Read more »<!doctype html> <html> <head> <script> function add() { var numOne, numTwo, sum; numOne = parseInt(document.ge...
Read more »Write a program to login page using Form Tag in html <html> <head> <meta charset="utf-8"> <meta name=...
Read more »<html> <body> <h2>JavaScript Confirm Box</h2> <button onclick="myFunction()">Click Me</button...
Read more »<html> <body> <h2>JavaScript Prompt</h2> <button onclick="myFunction()">Click Me</button> ...
Read more »<html> <body> <h2>JavaScript Confirm Box</h2> <button onclick="myFunction()">Click Me</button...
Read more »<html> <body> <h2>JavaScript Alert</h2> <button onclick="myFunction()">CLick Me</button> <...
Read more »<HTML> <HEAD> <TITLE>ALERT BOX EXAMPLE</TITLE> </HEAD> <BODY> <SCRIPT Language="JavaScript...
Read more »<HTML> <HEAD> <TITLE>PROMPT BOX EXAMPLE</TITLE> </HEAD> <BODY> <SCRIPT Language="JavaScript...
Read more »#include <stdio.h> int main() { int a,b,area; printf("Enter side lenth a"); scanf("%d",&a); print...
Read more »<!DOCTYPE html> <html> <head> <title>equal</title> <script type="text/javascript"> var...
Read more »<!DOCTYPE html> <html> <head> <title>Even or odd</title> </head> <body> <script type="t...
Read more »<!DOCTYPE html> <html> <head> <title>factorial</title> <script type="text/javascript"> ...
Read more »<!DOCTYPE html> <html> <head> <title>fiboncci</title> </head> <body> <script type="text...
Read more »<!DOCTYPE html> <html> <head> <title>noframe</title> </head> <body style="background-color: g...
Read more »<!DOCTYPE html> <html> <head> <title>Armstrong number</title> </head> <body> <script type=...
Read more »<!doctype html> <html> <head> <title>Add Two Numbers</title> <script> var numOne = 10; var numTwo = ...
Read more »<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"...
Read more »<!DOCTYPE html> <html> <head> <title>Select Option Program</title> </head> <body> <h1>Selec...
Read more »HTML Images Syntax The HTML <img> tag is used to embed an image in a web page. Images are not technically inserted into a web page; ...
Read more »<!DOCTYPE html> <html> <body> <h1>Select File</h1> Select Your File: <input type="file"> <...
Read more »<!DOCTYPE html> <html> <body> <h1>The video element</h1> <video width="320" height="240...
Read more »<html> <head> <title>HTML Frames</title> </head> <frameset cols="25%,50%,25%"> <frame...
Read more »*******Write a program to Multiplication in C ******* #include<stdio.h> #include<conio.h> void main() { clrscr(); //Previous s...
Read more »*******Write a program to Division in C ******* #include<stdio.h> #include<conio.h> void main() { clrscr(); //Previous screen ...
Read more »*******Write a program to Subtraction in C ******* #include<stdio.h> #include<conio.h> void main() { clrscr(); //Previous scre...
Read more »#include<stdio.h> #include<conio.h> void main() { clrscr(); //Previous screen clear int a,b,c; printf("Enter Two Num:...
Read more »<!DOCTYPE html> <html> <body style="background-color:#DFFF00;"> <h1>This is a heading</h1> <p...
Read more »<!DOCTYPE html> <html> <body> <p>I am normal</p> <p style="color:Green;">I am Green</p>...
Read more »<!DOCTYPE html> <html> <body> <h2>An Unordered HTML List</h2> <ul> <li>Coffee</li> <...
Read more »<!DOCTYPE html> <html> <body> <h2>An UnOrdered HTML List</h2> <ul> <li>Coffee</li> <...
Read more »<!DOCTYPE html> <html> <body> <h2>An Ordered HTML List</h2> <ol> <li>Coffee</li> <li...
Read more »<!DOCTYPE html> <html> <body> <h2>HTML Buttons</h2> <p>HTML buttons are defined with the button tag:...
Read more »HTML Links - Hyperlinks HTML links are hyperlinks. You can click on a link and jump to another document. When you move the mouse over a li...
Read more »<!DOCTYPE html> <html> <head> <title>Heading Pagee</title> </head> <body bgcolor="pink" al...
Read more »<!DOCTYPE html> <html> <head> <title>Registration Example</title> </head> <body bgcolor="gray...
Read more »<!DOCTYPE html> <html> <head> <title>Paragraph Example</title> </head> <body> <p>I am a para...
Read more »<!DOCTYPE html> <html> <head> <title>leap year</title> <script type="text/javascript"> ...
Read more »#include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf("Enter Two Num:"); scanf("%d %d...
Read more »<html> <body> <title>find number of vowels in a string in JavaScript</title> <script type="text/javascript...
Read more »HTML Login Form A login form is one of the most vital features in web development. It makes it possible to identify users and, based on that...
Read more »Printing Workbooks select the cells you want to print and then set that area as the print area Steps to set a print area: Select the cells...