<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap Text Emphasis Classes</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> </head> <body> <div class="m-4"> <p class="text-primary">Primary:Before continuing, please read the instructions.</p> <p class="text-secondary">Secondary: The most recent version no longer includes this functionality.</p> <p class="text-success">Success: Your message was successfully delivered.</p> <p class="text-info">Info:To finish the sign-up procedure, you must accept the terms and conditions.</p> <p class="text-warning">Warning: The network connection you were using had an issue.</p> <p class="text-danger">Danger:During sending your data, a mistake was made.</p> <p class="text-muted">Muted: This sentence has a grayed-out background.</p> </div> </body> </html>