<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Portfolio</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"> <div class="home-img"> <img src="img_ID.jpg" alt="Portrait of Audrey" class="rounded-full mx-auto mb-4" width="200" height="200"> </div> <div class="home-content"> <h1 class="text-4xl mb-2">Hello, I'm Audrey</h1> <h3 class="text-xl mb-6">I'm a versatile creator, blending art and technology to craft unique experiences. Welcome to my world!</h3> <p class="text-lg mb-4">My Social</p> <div class="flex justify-center space-x-6 mb-6"> <a href="https://www.instagram.com/not_owwdreeiixx_/" class="text-2xl" aria-label="Instagram"><i class="fab fa-instagram"></i></a> <a href="https://github.com/sdca-audrey-maven-concepcion" class="text-2xl" aria-label="GitHub"><i class="fab fa-github"></i></a> <a href="https://www.youtube.com/@not_owwdreeiixx_" class="text-2xl" aria-label="YouTube"><i class="fab fa-youtube"></i></a> <a href="#" class="text-2xl" aria-label="Resume"><i class="fas fa-file-alt"></i></a> </div> <div class="flex justify-center mb-6"> <img src="robot.png" alt="A small robot illustration" class="rounded shadow-lg" style="max-width: 45px; height: auto;"> </div> <button onclick="alert('Chat feature coming soon!')" class="mt-4 bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded" aria-label="Chat with me">Chat with me</button> </div> </main> </body> </html>