1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'" /> <meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'" /> <title>Title</title> <link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/> </head> <body> </body> <script> window.$=window.jQuery=require('./node_modules/jquery/dist/jquery.min.js'); require('./node_modules/bootstrap/dist/js/bootstrap.min.js'); </script> </html>
|