<!DOCTYPE html> <html> <head> <title>Users</title> </head> <body> <h1>User List</h1> <table border="1" cellpadding="5"> <tr> <th>ID</th> <th>Name</th> <th>Email</th> </tr> <% users.forEach(user => { %> <tr> <td><%= user.id %></td> <td><%= user.name %></td> <td><%= user.email %></td> </tr> <% }) %> </table> </body> </html>