UNPKG

static-pages-bundler

Version:

This is a simple library that creates a bundle of a simple web page that uses classic `<link ...>` and `<script ...>` way to connect a bunch of CSS and JS files to the HTML template.

33 lines (28 loc) 1.11 kB
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>The HTML5</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="author" content=“ancoopa”> <!-- Bundler CSS start --> <link type="text/css" rel="stylesheet" href="background-color.css"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> <link rel="stylesheet" href="letter-spacing.css" type="text/css"> <link rel="stylesheet" href="text-color.css"> <link rel="stylesheet" href="text-size.css"> <link rel="stylesheet" href="center-text.css"> <!-- Bundler CSS end --> <!--[if lt IE 9]> <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script> <![endif]--> <!-- Bundler JS start --> <script type="application/javascript" src="consoleLog1.js" defer></script> <script src="consoleLog2.js" type="application/javascript" defer></script> <script src="consoleLog3.js" defer></script> <!-- Bundler JS end --> </head> <body> <div>My beautiful text.</div> </body> </html>