<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <title>Abou Zaghla</title>

  <link rel="stylesheet" href="style.css" />

</head>

<body>


<header class="navbar">

  <h1>Abou Zaghla</h1>

  <nav>

    <a href="#about">About</a>

    <a href="#skills">Skills</a>

    <a href="#contact">Contact</a>

  </nav>

</header>


<section class="hero">

  <img src="assets/profile.jpg" alt="Abou Zaghla" />

  <div>

    <h2>International Business Student</h2>

    <p>

      Interested in global markets, E-Commerce, and intercultural collaboration.

    </p>

    <a class="btn" href="assets/cv.pdf" download>Download CV</a>

  </div>

</section>


<section id="about" class="section">

  <h3>About Me</h3>

  <p>

    International Business student at CBS Cologne with strong analytical thinking,

    structured work ethic, and passion for teamwork and global business.

  </p>

</section>


<section id="skills" class="section gray">

  <h3>Skills</h3>

  <ul class="skills">

    <li>MS Excel</li>

    <li>MS PowerPoint</li>

    <li>Analytical Thinking</li>

    <li>Structured Work Style</li>

    <li>Teamwork</li>

    <li>Fast Learner</li>

    <li>Reliable</li>

  </ul>

</section>


<section class="section">

  <h3>Languages</h3>

  <ul class="languages">

    <li>English – Native</li>

    <li>German – Fluent</li>

    <li>Arabic – Fluent</li>

  </ul>

</section>


<section id="contact" class="section gray">

  <h3>Contact</h3>

  <p>Email: <a href="mailto:yabouzaghla@gmail.com">yabouzaghla@gmail.com</a></p>

  <p>Phone: +49 173 2895626</p>

  <p>Wuppertal, Germany</p>

  <p>

    <a href="https://www.linkedin.com/in/abouzaghla" target="_blank">

      LinkedIn Profile

    </a>

  </p>

</section>


<footer>

  <p>© 2026 Abou Zaghla</p>

</footer>


<script src="script.js"></script>

</body>

</html>