Files
Prog4_Beadando/WD7UVN_SzTGUI_2023242.Client.JS/wwwroot/index.html
TypoMustakes d981b8afa0 delete added
2024-04-23 17:46:44 +02:00

31 lines
669 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Company Manager</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Hello, World!</h1>
<p>Welcome to my first web page.</p>
<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>
<th>Actions</th>
</tr>
</thead>
<tbody id="resultarea">
</tbody>
</table>
<script src="script.js"></script>
</body>
</html>