DataStructureVisualizer/Projekt_Ordner/html/aboutMe.html

69 lines
2.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="../css/aboutMe.css" rel="stylesheet" />
<title>About me</title>
</head>
<body>
<div class="page">
<!-- Topbar -->
<nav class="topbar">
<div class="container">
<h1 class="brand">Obai Albek</h1>
<ul class="menu">
<li><a href="#">Homepage</a></li>
<li><a href="#">Help</a></li>
</ul>
</div>
</nav>
<main class="card">
<div class="container hero">
<figure class="avatar">
<img src="../assets/Obai_Albek_Bewerbungsfoto.jpeg" alt="Obai Albek"/>
</figure>
<p class="intro">
Hi, I'm Obai Albek, a computer science student with a strong passion for data structures,
algorithms, and software development. This project is part of my journey to better understand
how core concepts in computer science work — and to make them more visual and interactive
for others. Feel free to explore, learn, and get in touch if you have questions or feedback!
</p>
</div>
</main>
<footer class="footer">
<div class="container contact">
<section class="contact-form">
<h2>MESSAGE ME</h2>
<form method="post" action="../php/contactMe.php">
<input type="text" name="user_name" placeholder="Name" required />
<input type="email" name="user_email" placeholder="Email" required />
<input type="text" name="subject" placeholder="Subject" required />
<textarea name="message" placeholder="Type your Message here..." required></textarea>
<input type="submit" name="send">
</form>
</section>
<section class="contact-info">
<h3>CALL ME</h3>
<p>0049 178 3740356</p>
<h3>OR EMAIL</h3>
<p>obay.albeek@gmail.com</p>
<h3>SOCIAL ME</h3>
<div class="social">
<a aria-label="Facebook" href="https://www.facebook.com/share/16WVt3qqsP/?mibextid=wwXIfr" title="Facebook" target="_blank" class="icon fb">f</a>
<a aria-label="LinkedIn" href="www.linkedin.com/in/obai-albek-85365a357" target="_blank" title="LinkedIn" class="icon in">in</a>
<a aria-label="Instagram" title="Instagram" href="https://www.instagram.com/obaybeek?igsh=MTZmNHFxaWZwYmNqcg%3D%3D&utm_source=qr" target="_blank" class="icon ig"></a>
<a aria-label="GitHub" href="https://github.com/ObaiAlbek" title="GitHub" target="_blank" class="icon gh">🐙</a>
</div>
</section>
</div>
</footer>
</div>
</body>
</html>