UNPKG

node-web-scaffolding

Version:

scaffolding to start a web application + REST api with Nodejs

20 lines (19 loc) 752 B
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>NodeJS Web Application Scaffolding</title> <link rel="stylesheet" href="assets/css/styles.css" /> <link rel="icon" type="image/png" href="assets/images/favicon-32x32.png" sizes="32x32" /> <link rel="icon" type="image/png" href="assets/images/favicon-16x16.png" sizes="16x16" /> <script src="js/sampleApiCall.js"></script> </head> <body> <h1> Web Application Scaffolding </h1> <small>Your Content goes below</small> <div id="example-content-container"> <p>Enter Your name: <input id="input-name" type="text" /></p> <h3 id="greetings-container"></h3> </div> </body> </html>