Add basic functions

This commit is contained in:
2025-03-30 13:50:23 +05:00
parent aaff8291da
commit 71a2bec099
3 changed files with 140 additions and 1 deletions

View File

@@ -4,8 +4,27 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0">
<link rel="stylesheet" href="/css/style.css?v=1">
<script src="/js/index.js?v=1" defer>
<script src="/js/index.js?v=1" defer></script>
</head>
<body>
id, название сделки, бюджет, название контакта номер телефона.
<table>
<tr>
<th>ID</th>
<th>Название</th>
<th>Бюджет</th>
<th>Контакт</th>
<th>Телефон</th>
</tr>
<div id="table-content">
<tr>
<td>1111</td>
<td>Название</td>
<td>Бюджет</td>
<td>Контакт</td>
<td>Телефон</td>
</tr>
</div>
</table>
</body>
</html>