This page shows buttons, links, and form inputs styled with Bootstrap classes. They share consistent colors, spacing, and shapes. This helps users quickly know what can be clicked or typed.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Consistent Interactive Elements</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<main class="container py-4">
<h1>Consistent Interactive Elements</h1>
<p>Notice how buttons, links, and inputs look similar and easy to use.</p>
<button class="btn btn-primary me-2">Primary Button</button>
<button class="btn btn-secondary">Secondary Button</button>
<nav class="my-3">
<a href="#" class="nav-link d-inline me-3">Home</a>
<a href="#" class="nav-link d-inline">About</a>
</nav>
<form>
<label for="name" class="form-label">Name</label>
<input type="text" id="name" class="form-control mb-3" placeholder="Enter your name">
<button type="submit" class="btn btn-success">Submit Form</button>
</form>
</main>
</body>
</html>