Files
Prog4_Beadando/WD7UVN_SzTGUI_2023242.Client.JS/wwwroot/index.html

30 lines
636 B
HTML
Raw Normal View History

2024-04-20 12:26:33 +02:00
<!DOCTYPE html>
<html>
<head>
2024-04-22 10:17:39 +02:00
<title>Company Manager</title>
<link rel="stylesheet" type="text/css" href="style.css">
2024-04-20 12:26:33 +02:00
</head>
<body>
<h1>Hello, World!</h1>
<p>Welcome to my first web page.</p>
2024-04-22 14:50:21 +02:00
<div id="formdiv">
<input type="text" id="customername" placeholder="Customer name">
<button id="add" onclick="addCustomer()">Add</button>
</div>
<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
</tr>
</thead>
<tbody id="resultarea">
</tbody>
</table>
2024-04-22 10:17:39 +02:00
<script src="script.js"></script>
2024-04-20 12:26:33 +02:00
</body>
</html>