Posts

Showing posts from December, 2023

A Javascript Program for getting the length of the sentence:-

 var sent = prompt("Enter the sentence"); var len = sent.length; alert("The length of the sentence is " + len);

Simple HTML Script for creating a form

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Infopedia</title> </head> <body> <form> <fieldset> <legend>Personal Details</legend> <p> <label> Salutation <br /> <select name="salutation"> <option>--None--</option> <option>Mr.</option> <option>Ms.</option> <option>Mrs.</option> <option>Dr.</option> <option>Prof.</option> </select> </label> </p> <p> <label>First name: <input name="firstName" /></label> </p> <p>