Skip to content

Commit 36aa47b

Browse files
authored
Create index.html Personal Portfolio Website - Bohdan Dudych This is my personal portfolio website built with pure HTML and CSS. It introduces who I am, my Python projects, and my goals in the field of Artificial Intelligence. I am a 16-year-old student from Lviv, Ukraine, studying at School #99, with a strong passion for becoming an AI/Machine Learning Engineer. This website highlights my journey, early projects, and contact information.
1 parent 67807d2 commit 36aa47b

1 file changed

Lines changed: 108 additions & 0 deletions

File tree

index.html

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Bohdan Dudych - Future AI Engineer</title>
7+
<style>
8+
body {
9+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
10+
background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
11+
color: #fff;
12+
margin: 0;
13+
padding: 0;
14+
}
15+
16+
header {
17+
background: #111;
18+
padding: 2rem;
19+
text-align: center;
20+
}
21+
22+
header h1 {
23+
font-size: 2.5rem;
24+
color: #00ffd5;
25+
}
26+
27+
.container {
28+
max-width: 900px;
29+
margin: auto;
30+
padding: 2rem;
31+
}
32+
33+
section {
34+
margin-bottom: 2rem;
35+
background: rgba(255, 255, 255, 0.05);
36+
padding: 1.5rem;
37+
border-radius: 1rem;
38+
box-shadow: 0 0 10px #00ffd5;
39+
}
40+
41+
h2 {
42+
color: #00ffd5;
43+
}
44+
45+
img {
46+
width: 100%;
47+
border-radius: 1rem;
48+
margin-top: 1rem;
49+
}
50+
51+
a {
52+
color: #00ffd5;
53+
text-decoration: none;
54+
}
55+
56+
a:hover {
57+
text-decoration: underline;
58+
}
59+
60+
footer {
61+
text-align: center;
62+
padding: 2rem;
63+
background: #111;
64+
font-size: 0.9rem;
65+
}
66+
</style>
67+
</head>
68+
<body>
69+
<header>
70+
<h1>Bohdan Dudych</h1>
71+
<p>16-year-old future AI Engineer from Lviv, Ukraine</p>
72+
</header>
73+
74+
<div class="container">
75+
<section>
76+
<h2>About Me</h2>
77+
<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>
78+
<img src="https://images.unsplash.com/photo-1535223289827-42f1e9919769" alt="AI Art">
79+
</section>
80+
81+
<section>
82+
<h2>My Projects</h2>
83+
<ul>
84+
<li>User Info App – basic input/output and string manipulation</li>
85+
<li>Simple Calculator – arithmetic operations based on user input</li>
86+
<li>List Operations – manipulation and merging of Python lists</li>
87+
<li>Dictionary Access – access and display values from dictionaries</li>
88+
<li>Set Intersection – finding common values and converting sets</li>
89+
<li>Conditions & Loops – examples of if-statements, for and while loops</li>
90+
<li>Football Player Stats – managing a dataset and calculating averages</li>
91+
</ul>
92+
<img src="https://images.unsplash.com/photo-1581090700227-1e8f7b74f0c5" alt="Code on screen">
93+
</section>
94+
95+
<section>
96+
<h2>Contact Me</h2>
97+
<p>Email: <a href="mailto:valvet906@gmail.com">valvet906@gmail.com</a></p>
98+
<p>Alternate Email: <a href="mailto:dudych.bogdan.5b@gmail.com">dudych.bogdan.5b@gmail.com</a></p>
99+
<p>Telegram: <a href="https://t.me/Dbduduh">@Dbduduh</a></p>
100+
<p>Instagram: <a href="https://instagram.com/dydubht">@dydubht</a></p>
101+
</section>
102+
</div>
103+
104+
<footer>
105+
&copy; 2025 Bohdan Dudych. All rights reserved.
106+
</footer>
107+
</body>
108+
</html>

0 commit comments

Comments
 (0)