top of page

Footer Code

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your Website Title</title>
    <style>
        body {
            font-family: 'Fahkwang', sans-serif;
        }

        .footer {
            text-align: center;
            padding: 20px 0;
            font-size: 14px;
            background-color: #D84705;
            color: #FFFFFF;
        }
    </style>
    <!-- Include the Fahkwang font -->
    <link href="https://fonts.googleapis.com/css2?family=Fahkwang:wght@400;700&display=swap" rel="stylesheet">
</head>

<body>
    <!-- Your website content goes here -->

    <div class="content">
        <!-- Your website content goes here -->
    </div>

    <div class="footer">
        Designed by <a href="https://www.sukumarswain.com/" target="_blank">Sukumar Swain</a>
    </div>
</body>

</html>

bottom of page