InterviewSolution
Saved Bookmarks
| 1. |
Write the HTML code to create a basic toast. |
|
Answer» When something happens, the TOAST COMPONENT acts as an alert box that only appears for a few seconds (i.e. when the user clicks on a button, SUBMITS a FORM, etc.). <div class= "toast" > <div class= "toast-header" > Toast Header </div> <div class="toast-body"> Toast Body Text </div></div> |
|