cars.html 905 B

12345678910111213141516171819
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=utf-8">
  5. <title>Nice cars</title>
  6. </head>
  7. <body>
  8. <h1>Nice cars!</h1>
  9. <p>
  10. This page loads "large" images of fancy cars. It is meant to serve as a stress test for nodemcu-httpserver.<br>
  11. It works with three embedded images of cars, but the server crashes with four. Edit this file and try it yourself.<br>
  12. Whoever manages to modify nodemcu-httpserver to load all four images without crashing wins a prize!
  13. </p>
  14. <figure><img src="cars-ferrari.jpg" /><figcaption>Ferrari</figcaption></figure>
  15. <figure><img src="cars-lambo.jpg" /><figcaption>Lamborghini</figcaption></figure>
  16. <figure><img src="cars-mas.jpg" /><figcaption>Maserati</figcaption></figure>
  17. <figure><img src="cars-porsche.jpg" /><figcaption>Porsche</figcaption></figure>
  18. </body>
  19. </html>