یک تودو لیست با بوتاسترپ5 بساز
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap 5 To-Do List</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1 class="text-center my-5">To-Do List</h1>
<div class="row">
<div class="col-md-6 mx-auto">
<form action="" method="POST">
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Add a new task" name="task" required>
<button class="btn btn-primary" type="submit">Add</button>
</div>
</form>
<ul class="list-group">
<li class="list-group-item d-flex justify-content-between align-items-center">
Example task
<span class="badge bg-primary rounded-pill">Done</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Example task
<span class="badge bg-primary rounded-pill">Done</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Example task
<span class="badge bg-danger rounded-pill">Not done</span>
</li>
</ul>
</div>
</div>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/wpm 著作权归作者所有。请勿转载和采集!