Copy content of one textbox to another textbox using HTML,CSS and JavaScript
<html> <head> <title>Copy Billing Address To Shipping Address</title> <style> input[type=text]{ padding: 8px 10px; border: 2px solid #4CAF50; border-radius: 20px; } label { color:red; font-size:15px; } h3 { color:#0000ff; } .button { display: block; width: 100%; border: none; background-color: #4CAF50; color: white; padding: 14px 28px; font-size: 16px; } body { background-color: red; } </style> <script> function copyAddress(form) { form.sstreet.value = form.bstreet.value; form.scity.value = form.bcity.value; form.sstate.value = form.bstate.value; form.spcode.value = form.bpcode.value; form.scountry.value = form.bcountry.value; } </script> </head> <body> <form> <table style="width:60%" align = "center" bgcolor="yellow" cellpadding="8" cellspacing="8"> <tr> <td><h3><b>Bil...