How to Create a Notification Toast on website ?
SEO Help and Tips
How to Create a Notification Toast on website ?
Here is the example code of notification toast for short messages show. You can use it as Gadget.
<<head>> Section:
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<<body>> Section:
<div class="container mt-3">
<div class="toast show">
<div class="toast-header">
<strong class="me-auto">Title indication</strong>
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
<div class="toast-body">
<p>Toast messages here</p>
</div>
</div>
</div>
Comments
Post a Comment
Thanks for your Comments.