🔗 Easy installation process ~


[1] Include JS

                <script src="https://alertnotify.pages.dev/alertNotify/alertNotify.min.js"></script>
                
            

[2] Include a CSS theme

                <link rel="stylesheet" href="https://alertnotify.pages.dev/alertNotify/theme/defaultTheme.min.css"/>
                
            

💡  Can choose another theme from "Themes List"

[3] Start coding!

                alertNotify('Your message here', 'type', duration);
                
            

🛠  Customization ~


alertNotify('Your message here', 'type', duration);

[1] Type

Here default value of "Type" is  info ;
another possible value - success ,   error ,   warning ,  

[2] Duration

Here the value of "duration" must be in "millisecond"   like  1000 ;

* * * Example


                  alertNotify('Success message', 'success', 3000);
                  
                  alertNotify('Error message', 'error', 3000);
                  
                  alertNotify('Warning message', 'warning', 3000);
                  
                  alertNotify('Info message', 'info', 3000);