deepsite-project / payment.html
Shellblaze's picture
Create a website for my school payment
c1862c3 verified
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>School Payment Portal</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="card">
<h1>School Payment Portal</h1>
<form>
<div class="form-group">
<label for="student-id">Student ID</label>
<input type="text" id="student-id" required>
</div>
<div class="form-group">
<label for="amount">Payment Amount ($)</label>
<input type="number" id="amount" min="1" required>
</div>
<div class="form-group">
<label for="payment-method">Payment Method</label>
<select id="payment-method" required>
<option value="">Select method</option>
<option value="credit">Credit Card</option>
<option value="debit">Debit Card</option>
<option value="bank">Bank Transfer</option>
</select>
</div>
<button type="submit" class="pay-button">Make Payment</button>
</form>
<p><a href="index.html">Back to Home</a></p>
</div>
</body>
</html>