<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About Me</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
    <link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
    <style>
        body {
            font-family: 'Indie Flower', cursive;
        }
    </style>
</head>
<body class="bg-black text-white flex flex-col items-center justify-center min-h-screen">
    <header class="absolute top-5 right-5 mt-4 mr-4">
        <nav class="flex space-x-4 text-sm">
            <a href="index.html" class="hover:underline">Home</a>
            <a href="about.html" class="hover:underline">About Me</a>
            <a href="contracts.html" class="hover:underline">Contracts</a>
            <a href="blog.html" class="hover:underline">My Blog</a>
        </nav>
    </header>
    <main class="text-center">
        <h1 class="text-4xl mb-4">About Me</h1>
        <h2 class="text-2xl mb-2">Get to Know Me</h2>
        <p class="mb-4">I am a hardworking second-year student studying for a Bachelor of Information Technology. I have hearing and speech disabilities, which have taught me to be strong and determined. Although technology was not my first passion, I found a love for web development during my studies. I enjoy learning new skills and fixing errors in my projects.
            I am committed to creating websites that are easy to use and work well. I see every challenge as a chance to grow, and I approach each project with excitement. My strong work ethic helps me put in the effort needed to succeed.
            </p>
            <h3 class="text-xl mb-2">Languages</h3>
            <ul class="list-disc list-inside mb-4">
                <li class="flex items-center mb-2">
                    <img src="html.png" alt="HTML Icon" class="w-6 h-6 mr-2"> HTML
                </li>
                <li class="flex items-center mb-2">
                    <img src="java-script.png" alt="JavaScript Icon" class="w-6 h-6 mr-2"> JavaScript
                </li>
                <li class="flex items-center mb-2">
                    <img src="css-3.png" alt="CSS Icon" class="w-6 h-6 mr-2"> CSS
                </li>
            </ul>
            
            <h3 class="text-xl mb-2">Tools</h3>
            <ul class="list-disc list-inside mb-4">
                <li class="flex items-center mb-2">
                    <img src="github.png" alt="GitHub Icon" class="w-6 h-6 mr-2"> GitHub
                </li>
                <li class="flex items-center mb-2">
                    <img src="visual-studio.png" alt="VSCode Icon" class="w-6 h-6 mr-2"> VSCode
                </li>
            </ul>
        </ul>
    </main>
</body>
</html>