<!DOCTYPE html> <html> <head> <title>ES6 Module Example</title> </head> <body> <!-- Use the type="module" attribute to enable ES6 modules --> <script type="module" src="main.js"></script> </body> </html>