Posts

Showing posts from May, 2021

How to create Toogle Button using HTML and JavaScript | Prakhar Doneria

Download Zip for this program codes click me

How to create a mobile vibrate program using html?

Page Title Vibrate mobile for 10 sec vibrate for 5 sec Download PDF click me

What is JAVASCRIPT?How to make a program using HTML and Java | "Hello World" | Prakhar Doneria

Learn Java+HTML5 by using Notepad by, Prakhar Doneria Java is used for creating Games while HTML is used for creating web based games and pages. JAVA+HTML are together are used to make a web game. JavaScript is the Programming Language for the WebGames. Java+HTML can also be made by using NOTEPAD JavaScript can update and change both HTML and CSS. JavaScript can calculate, manipulate and validate data. Download this PDF and make a program saying "Hello World" Click to download PDF in GOOGLE DRIVE(Google One) Was the PDF helpful? Remarks: Enter a feedback if you think! Thanks YOUTUBE Animation by HTML

How to create animation using HTML | CBSE Class 10 | Cyber Beans Chapter 3 | HTML | Prakhar Doneria

Image
  Write this code in HTML 5 editor: <html> <head> <title>Page Title</title> <style> *{     padding:0px;     margin:0px;     background-color:black; } body {     height:100vh;     display:flex;     box-sizing:border-box;     justify-content:center;     align-items:center; } h1{     width:0ch;     overflow:hidden;     white-space:nowrap;     font-family:Sans-serif;     font-style:armenian;     letter-spacing:0px;     font-size:50px;     animation:html 5s infinite alternate steps(5);     border-right:3px solid black;     color:white;      } @keyframes html{     0%{         width:0ch;     }     10%{         width:4ch; }     20%{         width:7.5ch; } </style> </head> <body> <h1>I❤️HTML</h1> </body> </html> Output:  Also read: Form by HTML

How to create form in HTML 5

Image
 Write the following codes: <!DOCTYPE html> <html lang="en"> <head> <title>Form By Prakhar</title> </head> <body bgcolor="lightgreen"><form> <p>Enter Name<input type="text" Name= "username" Size=30><br><br> <p> Gender </p> <INPUT type= "Radio"Name= "Gender" Value= "Male" checked> Male <br><br> <INPUT type= "Radio"Name= "Gender" Value= "Female" Checked> Female <p>City</p> <Select Name= "Cities"> <OPTION Selected> Etawah</option> <option> Luchnow</option> <option>Delhi</option> </form> </body> </html> Output:  Also read: Calculator by HTML

How to create calculator using HTML

Image
 Write the codes: <html>  <head>        <script>           //function that display value           function dis(val)           {               document.getElementById("result").value+=val           }                       //function that evaluates the digit and return result           function solve()           {               let x = document.getElementById("result").value               let y = eval(x)               document.getElementById("result").value = y           }                       //function that clear the display           function clr()           {               document.getElementById("result").value = ""           }        </script>        <!-- for styling -->        <style>           .title{           margin-bottom: 10px;           text-align:center;           width: 210px;           color:green;           border: solid black 2px;           }              input[type="button"