For this we are using JavaScript :
<!DOCTYPE html>
<html>
<head>
<title>Alert / Pop-up</title>
</head>
<body>
<div id="output"></div>
<script type="text/javascript">
//pop-up / alert box
window.alert("This is a Alert Box");
</script>
</body>
</html>
Top comments (0)