<!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>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter