UNPKG

draw-page-structure

Version:

a nice tool to make skeleton screen

27 lines 528 B
module.exports = ` <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>example</title> <style> @keyframes opacity { 0% { opacity: 1 } 50% { opacity: .5 } 100% { opacity: 1 } } </style> </head> <body> <div id="app"></div> <!-- built files will be auto injected --> </body> </html> `;