Form-Layout
<!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>Layout</title>
</head>
<body>
<div class="container">
<form>
<div class="row">
<div class="mb-3 col-md-6">
<label class="form-label" for="email">Email</label>
<input type="text" class="form-control" placeholder="email" id="email">
</div>
<div class="mb-3 col-md-6">
<label class="form-label" for="password">Password</label>
<input type="password" class="form-control" placeholder="password" id="password">
</div>
</div>
</form>
</div>
</body>

Comments
Post a Comment