31 lines
669 B
HTML
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> |