-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport-2024-Q1.html
More file actions
56 lines (56 loc) · 1.67 KB
/
report-2024-Q1.html
File metadata and controls
56 lines (56 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>Фінансовий звіт за 2024-Q1</title>
<style>
body { font-family: Arial, sans-serif; margin: 40px; }
.positive { color: green; }
.negative { color: red; }
.summary { background: #f5f5f5; padding: 20px; }
</style>
</head>
<body>
<h1>Фінансовий звіт за 2024-Q1</h1>
<div class="summary">
<h2>Загальні показники</h2>
<p>Дохід: 150000 грн</p>
<p>Витрати: 85000 грн</p>
<p>Прибуток: 65000 грн</p>
<p>Маржа: 43.33%</p>
</div>
<h2>Транзакції</h2>
<table border="1" cellpadding="10">
<tr>
<th>Дата</th>
<th>Сума</th>
<th>Опис</th>
</tr>
<tr>
<td>2024-01-15</td>
<td class="positive">+45000 грн</td>
<td>Продаж продукту А</td>
</tr>
<tr>
<td>2024-02-01</td>
<td class="negative">-30000 грн</td>
<td>Оплата оренди</td>
</tr>
<tr>
<td>2024-02-15</td>
<td class="positive">+65000 грн</td>
<td>Продаж продукту B</td>
</tr>
<tr>
<td>2024-03-01</td>
<td class="negative">-25000 грн</td>
<td>Зарплати</td>
</tr>
</table>
<div class="summary">
<h2>Підсумок</h2>
<p>Баланс за період: 55000 грн</p>
<hr>
<small>Звіт згенеровано: 23.04.2025, 19:00:52</small>
</div>
</body>
</html>