Forms
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forms</title>
</head>
<body>
<div class="container">
<form class="mb-3">
<label class="form-label" for="email">Email</label>
<input type="text" class="form-control" placeholder="E-mail" id="email">
<label class="form-label" for="password">Password</label>
<input type="password" class="form-control" placeholder="Password" id="password">
<label class="form-label" for="address">Address</label>
<input type="text" class="form-control-lg" placeholder="Address" id="address">
</form>
</div>
</body>

Comments
Post a Comment