Scroll to top smoothly button with javascript and jquery Sarfraz Alam October 13, 2018 I this tutorial i will show you how to create a scroll to top button in html with javascript and jquery. Just add all code step by step ... Read More
Show/Hide Div on Button Click using HTML, CSS and JavaScript. Shivam tripathi September 26, 2018 code>> <!--Show/Hide Div on Button Click .--> <html> <head> <style> div{ padding... Read More
Login form with PHP and MySQL Sarfraz Alam August 18, 2018 First create a login form in html you can use any editoe i prefer Notepad++ Save the file with .htm extension. Here is the code for Form... Read More
PHP code to print the factorial of a number Sarfraz Alam August 10, 2018 <?php $save_factorial=array(); function factorial($n) { global $save_factorial; if($n==1||$n==0) return 1; if(isset... Read More
PHP Login with OTP Authentication Sarfraz Alam April 18, 2018 Login with an OTP code is a secure method for the user authentication process. In this method, a one-time password is generated dynamicall... Read More
html code to create a jumping ball Sarfraz Alam February 08, 2018 <html> <head> </head> <body> <div align="center" id="img" style="position:absolute;... Read More
HTML code to create Feedback Form Sarfraz Alam January 18, 2018 <script language="javascript" type="text/javascript"> function validateForm() { document.ge... Read More
html tags examples Sarfraz Alam January 06, 2018 Below is a listing of just a smattering of important tags, some of which are described for the first time below. <a href="URL... Read More
HTML code to find square root Sarfraz Alam January 06, 2018 <html> <head> <title> Random </title> </head> <body> <p> I have randomly selected the nu... Read More
HTML code to create a bouncing text Sarfraz Alam January 03, 2018 <html> <style> b{color:Blue;} body{color:pink;} </style> <title>Bouncing Text</title> <body> <mar... Read More
HTML program to change images Sarfraz Alam December 30, 2017 <!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body onload="startTime();"... Read More
JavaScript to find largest and smallest of 5 numbers Sarfraz Alam August 27, 2017 <html> <script type="text/javascript"> var a=parseInt(prompt("enter the first number ")); var b=parseInt(p... Read More
HTML program to show moving images Sarfraz Alam July 25, 2017 <!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body onload="startTime();"... Read More
a php program to print any table Sarfraz Alam January 06, 2017 -------------------html code------------------ <html> <center> <head><title>table</t... Read More
php program to print table from 2 to 10 Sarfraz Alam January 04, 2017 <?php echo " <i><marquee><h1><u>Table From 2 to 10</h1></marquee></i>"; echo ... Read More
Simple calculator in html Sarfraz Alam December 19, 2016 <html> <head> <title> Calculator</title> <style> h1{color:blue;} </style> </head> <bod... Read More