24 lines
657 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>User Directory - JSON Placeholder</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1>User Directory</h1>
<table id="users">
<thead>
<tr>
<th width="35%">Name</th>
<th width="35%">Phone</th>
<th width="30%">Email</th>
</tr>
</thead>
<tbody></tbody>
</table>
<script src="mod_users.js" type="module"></script>
<script src="user_directory.js" type="module"></script>
</body>
</html>