<!DOCTYPE html>
<html lang="id">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Profil Saya</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 20px;
        }
        .container {
            max-width: 600px;
            margin: auto;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        h1 {
            text-align: center;
        }
        img {
            width: 100%;
            border-radius: 50%;
        }
        .socials {
            list-style-type: none;
            padding: 0;
        }
        .socials li {
            margin: 10px 0;
        }
        .contact {
            margin-top: 20px;
            text-align: center;
        }
    </style>
</head>
<body>

    <div class="container">
        <h1>Profil Saya</h1>
        <img src="path_to_your_photo.jpg" alt="Foto Saya">
        <h2>Nama Lengkap: [Nama Lengkap Anda]</h2>
        
        <h3>Akun Media Sosial:</h3>
        <ul class="socials">
            <li><a href="https://www.instagram.com/username_anda">Instagram</a></li>
            <li><a href="https://www.tiktok.com/@username_anda">TikTok</a></li>
            <li><a href="https://www.youtube.com/c/username_anda">YouTube</a></li>
        </ul>

        <div class="contact">
            <h3>Kontak Saya:</h3>
            <p>Nomor: 081252960462</p>
            <p>Email: [prawatya01@example.com]</p>
        </div>
    </div>

</body>
</html>