HTML Payment Code. (Payment Page)
Hey, Guys if you are a coader or programmer and to make a payment form with HTML program then only copy paste this code.
<!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>Payment Form</title>
</head>
<body>
<form action="">
<h1>Payment Form</h1>
<h2>Contact Information</h2>
<p>Name: * <input type="text" name="name" required></p>
<fieldset>
<legend>Gender</legend>
<p>
Male <input type="radio" name="gender" id="gender"> Female <input type="radio" name="gender" id="Female">
</p>
</fieldset>
<p>Address: <textarea name="address" id="address" cols="100" rows="8"></textarea></p>
<p>Mail: <input type="email" name="email" id="email"></p>
<p>Pincode: <input type="number" name="pincode" id="pincode"></p>
<h2>Payment Information</h2>
<p>Card Type:
<select name="card_type" id="card_type">
<option value="">--Select a Card Type--</option>
<option value="visa">Visa</option>
<option value="master card">Master Card</option>
<option value="rupay">Rupay</option>
</select>
</p>
<p>
Card Number <input type="number" name="card_number" id="card_number">
</p>
<p>
Expiration Date: <input type="date" name="exp_date" id="exp_date">
</p>
<p>CVV <input type="password" name="cvv" id="cvv"></p>
<input type="submit" value="Pay Now">
</form>
</body>
</html>
Comments