-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage
88 lines (85 loc) · 3.01 KB
/
homepage
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="ua">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Мої проєкти </title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.header {
background-color: #333;
color: white;
padding: 10px 0;
text-align: center;
}
.container {
max-width: 1200px;
margin: 20px auto;
padding: 0 20px;
}
.project {
background: white;
margin-bottom: 20px;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.project h2 {
margin-top: 0;
}
.project img {
max-width: 100%;
border-radius: 8px;
}
.project p {
line-height: 1.6;
}
.footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
.btn {
display: inline-block;
background-color: #5cb85c;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #4cae4c;
}
</style>
</head>
<body>
<div class="header">
<h1>Мої проекти в сфері e-commerce і криптовалюти </h1>
</div>
<div class="container">
<div class="project">
<h2>Проєкт 1: Тетсування ПЗ для POS - терміналів </h2>
<img src="ecommerce_project.jpg" alt="OKKO-POS">
<p>Цей продукт представляє собою пз для керування заправочними колонками а також для створення і обслуговуання клієнтів </p>
</div>
<div class="project">
<h2>Проєкт 2: Крипто біржа з обмінником </h2>
<img src="crypto_project.jpg" alt="Криптобіржа з обмінником ">
<p>Ця біржа дозволяє створювати різні типо ордерів , з штатною і позаштатною торгівлею яка отримує дані з 2 дата центрів на американському ринку валюти </p>
</div>
</div>
<div class="footer">
<p>Вся детальна іфнормація стосовно мого резюме за посиланням нижче .</p>
</div>
</body>
</html>