-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (108 loc) · 3.83 KB
/
index.html
File metadata and controls
121 lines (108 loc) · 3.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bohdan Dudych - Future AI Engineer</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
color: #fff;
margin: 0;
padding: 0;
}
header {
background: #111;
padding: 2rem;
text-align: center;
}
header h1 {
font-size: 2.5rem;
color: #00ffd5;
}
.container {
max-width: 900px;
margin: auto;
padding: 2rem;
}
section {
margin-bottom: 2rem;
background: rgba(255, 255, 255, 0.05);
padding: 1.5rem;
border-radius: 1rem;
box-shadow: 0 0 10px #00ffd5;
}
h2 {
color: #00ffd5;
}
img {
width: 100%;
border-radius: 1rem;
margin-top: 1rem;
}
a {
color: #00ffd5;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
text-align: center;
padding: 2rem;
background: #111;
font-size: 0.9rem;
}
</style>
</head>
<body>
<header>
<h1>Bohdan Dudych</h1>
<p>16-year-old future AI Engineer from Lviv, Ukraine</p>
</header>
<div class="container">
<section>
<h2>About Me</h2>
<p>Hello! I'm Bohdan, a passionate student from School #99 in Lviv, Ukraine. At 16 years old, I’ve already taken my first steps in Python programming and AI development. My dream is to become an AI/Machine Learning Engineer and build technologies that shape the future.</p>
<img src="https://images.unsplash.com/photo-1535223289827-42f1e9919769" alt="AI Art">
</section>
<section>
<h2>My Projects</h2>
<ul>
<li>User Info App – basic input/output and string manipulation</li>
<li>Simple Calculator – arithmetic operations based on user input</li>
<li>List Operations – manipulation and merging of Python lists</li>
<li>Dictionary Access – access and display values from dictionaries</li>
<li>Set Intersection – finding common values and converting sets</li>
<li>Conditions & Loops – examples of if-statements, for and while loops</li>
<li>Football Player Stats – managing a dataset and calculating averages</li>
</ul>
<div style="text-align: center; margin-top: 1.5rem;">
<a href="https://github.com/QvIspe/python-projects" target="_blank" style="
display: inline-block;
padding: 0.8rem 1.5rem;
background-color: #00ffd5;
color: #0f2027;
border-radius: 8px;
font-weight: bold;
box-shadow: 0 0 10px #00ffd5;
transition: 0.3s ease-in-out;
" onmouseover="this.style.backgroundColor='#00e6c3'" onmouseout="this.style.backgroundColor='#00ffd5'">
View My GitHub Projects
</a>
</div>
</section>
<section>
<h2>Contact Me</h2>
<p>Email: <a href="mailto:valvet906@gmail.com">valvet906@gmail.com</a></p>
<p>Alternate Email: <a href="mailto:dudych.bogdan.5b@gmail.com">dudych.bogdan.5b@gmail.com</a></p>
<p>Telegram: <a href="https://t.me/Dbduduh">@Dbduduh</a></p>
<p>Instagram: <a href="https://instagram.com/dydubht">@dydubht</a></p>
</section>
</div>
<footer>
© 2025 Bohdan Dudych. All rights reserved.
</footer>
</body>
</html>