UNPKG

electron-notifications

Version:

A node module for sending notifications in electron applications

27 lines (23 loc) 561 B
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Notification</title> <link href="notification.css" rel="stylesheet" type="text/css"> </head> <body> <div class="container"> <div id="notification"> <div class="icon"> <img id="icon"> </div> <div class="message"> <h2 id="title"></h2> <p id="message"></p> </div> <div id="buttons"></div> </div> </div> <script src="../app.js"></script> </body> </html>