-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (127 loc) · 2.84 KB
/
index.html
File metadata and controls
153 lines (127 loc) · 2.84 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>DevOps01 charity courses to raise funds for Ukrainian Army</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f7f7f7;
color: #333;
}
header {
background-color: #005bbb;
padding: 40px 0;
text-align: center;
}
h1 {
color: #fff;
margin: 0;
font-size: 32px;
}
section {
padding: 40px;
background-color: #fff;
color: #333;
margin-bottom: 20px;
}
h2 {
color: #005bbb;
font-size: 24px;
margin-top: 0;
}
p {
line-height: 1.6;
}
ul {
list-style-type: disc;
padding-left: 20px;
}
a {
color: #005bbb;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
background-color: #005bbb;
color: #fff;
padding: 20px;
text-align: center;
font-size: 14px;
}
.certifications {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
padding: 20px;
list-style-type: none; /* Remove the bullets */
}
.certification {
text-align: center;
margin: 20px;
}
.certification img {
max-width: 200px;
}
.certification h2 {
color: #005bbb;
font-size: 18px;
margin: 10px 0;
}
.donation {
margin-top: 40px;
text-align: center;
background-color: #ffd700;
border: 1px solid #ffd700;
padding: 20px;
}
.donation p {
font-weight: bold;
margin-bottom: 10px;
}
.qr-code {
width: 200px;
height: 200px;
margin-bottom: 10px;
}
.bank-card-number {
font-family: monospace;
}
</style>
</head>
<body>
<header>
<h1>Welcome to DevOps 01 course </h1>
</header>
<section>
<h2>We had started our LMS to simplify the study flow</h2>
<p>Check <a href="https://devops01.xyz">devops01.xyz</a> to get the details about the course!</p>
</section>
<section>
<h2>Join our Telegram channel</h2>
<p>Your oppprotunity to join community and dive into DevOps is <a href="https://t.me/+n8-HOyw9aMxhOWUy">HERE!</a></p>
</section>
<section>
<h2>Contacts</h2>
<p>Please reach out for any inquiries:</p>
<p>email: <a href="mailto:devops.01.ua@gmail.com">devops.01.ua@gmail.com</a></p>
<p>phone: <a href="tel:+380509055667">+380 50 905 5667</a></p>
<p><a href="https://www.linkedin.com/in/artem-hrechanychenko-9221aa66">LinkedIn</a></p>
</section>
<section class="donation">
<h2>Donation</h2>
<p>Scan the QR code or use the following bank card number to make a donation:</p>
<img src="qr-code.png" alt="QR Code" class="qr-code">
<p class="bank-card-number">5375 4112 0618 8265</p>
</section>
<footer>
<!-- <p>(c) 2023 Artem Hrechanychenko.</p> -->
<p>© 2023 Artem Hrechanychenko.</p>
</footer>
</body>
</html>