How to shade Get link Facebook X Pinterest Email Other Apps December 09, 2020 i lost the audio for the videoplease click read more to see the video Get link Facebook X Pinterest Email Other Apps Comments
Exercise 2: Grade Equivalent March 17, 2022 <!DOCTYPE html> <html> <head> <title>Grade Equivalent</title> </head> <body> <h1>Grade Equivalent</h1> <p> <b> Name: </b> <input type="text" id="myText" name="fname" value=""></p> <p> <b> Score: </b> <input type="text" placeholder="Type" id="inputId2" value=""></p> <p><b>Total Items:</b><input type="text" placeholder="Type" id="inputId3" value=""></p> <button type="button"onclick="getCompute();">Compute</button> <script> function getCompute(){ var str = document.getElementById("myText").value; var n1 = Number(document.getElementById("inputId2").value); var n2 = Number(document.getElementById("inputId3").value); ave = (n1/n2)*... Read more
Exercise 1: The First Javascript Program March 10, 2022 <html> <head><title>Javascript Code </head></title> <body> <script language = "javascript" type = "text/javascript"> var name,age,course,skill,subject ; document.write("<br> Welcome to Javascript Programming"); name=prompt("Your Name Here"); document.write("<br> Name: <b>" +name) ; age=prompt("Age"); document.write("<br> Age: <b>" +age ); course=prompt("Enter your course"); document.write("<br> Course: <b>" +course ); skill=prompt("Enter your talent/skills"); document.write("<br> Talent: <b>" +skill ); subject=prompt("What's your favourite subject?"); document.write("<br> Subject: <b>" +subject ); </script> </body> </html> Output Read more
Exercise 5: Price List May 23, 2022 The Code: <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Price List, Add and Remove</title> <link rel="stylesheet" href="Exercise 007 - Style code.css"> </head> <body> <h1 class="font1"> Products & Price Select box</h1> <div id="container"> <form> <fieldset> <label for="name"> • Add Products: </label> <input type="text" id="name" placeholder="Enter Product" autocomplete="off"> <br> <br> <label for="price"> • Add Price: </label> <input type="number" id="price" placeholder="Enter Price... Read more
Comments
Post a Comment