main.html 475 B

123456789101112131415
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. </head>
  6. <body>
  7. <h1>Sprite image embedded in entry.html (which processed by html-loader and extracted by extract-text-webpack-plugin)</h1>
  8. <img src="../assets/twitter.svg" alt="">
  9. <h1>Sprite image embedded as background-image in main.css (which processed by css-loader and extracted by extract-text-webpack-plugin)</h1>
  10. <link rel="stylesheet" href="main.css">
  11. <div class="twitter-logo"></div>
  12. </body>
  13. </html>