naloga-1/index.html
Gašper Dobrovoljc 6c1a85bcf1
Initial commit
2023-01-06 21:40:41 +01:00

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>