0
HTML
What tag used in html inside a website notification show on web page <
2 Answers
0
In order to show notifications, you need to use JavaScript's alert() function in order to show text
i.e. alert('Welcome to my website');
0
Or use:
confirm() in order to make an alert with ok/cancel underneath
prompt() in order to make an alert to get user input
And probably some more from which I don't know it's existence