html alert css code example
Example 1: how to make an alert in html
<script>
alert('this is an alert');
</script>
Example 2: alert library css and js
alertify.confirm("This is a confirm dialog.",
function(){
alertify.success('Ok');
},
function(){
alertify.error('Cancel');
});