16 lines
265 B
HTML
16 lines
265 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head><meta charset=utf-8>
|
|
<title>Create a notification</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
|
|
var notification = new Notification("This is a title", {
|
|
body: "This is a notification body",
|
|
tag: "sometag",
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|