24 lines
426 B
HTML
24 lines
426 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<title>Naloga 1</title>
|
||
|
|
||
|
<link rel="stylesheet" href="style.css" />
|
||
|
<script defer src="script.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Users</h1>
|
||
|
|
||
|
<table id="users">
|
||
|
<thead>
|
||
|
<th>ID</th>
|
||
|
<th>Name</th>
|
||
|
<th>Username</th>
|
||
|
<th>Email</th>
|
||
|
</thead>
|
||
|
<tbody></tbody>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|