Initial commit

This commit is contained in:
Gašper Dobrovoljc
2023-01-06 21:40:41 +01:00
commit 6c1a85bcf1
8 changed files with 332 additions and 0 deletions

23
index.html Normal file
View File

@@ -0,0 +1,23 @@
<!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>