<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>Facebook Page</title>

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


    <style>

        body{

            margin:0;

            padding:0;

            height:100vh;

            display:flex;

            justify-content:center;

            align-items:center;

            background:#f0f2f5;

            font-family: Arial, sans-serif;

        }


        .fb-box{

            background:white;

            padding:30px;

            border-radius:10px;

            text-align:center;

            box-shadow:0 0 10px rgba(0,0,0,0.2);

        }


        .fb-box h1{

            margin-bottom:20px;

        }


        .fb-btn{

            display:inline-block;

            background:#1877f2;

            color:white;

            padding:12px 25px;

            text-decoration:none;

            font-size:18px;

            border-radius:6px;

        }


        .fb-btn:hover{

            background:#145dbf;

        }

    </style>

</head>


<body>


    <div class="fb-box">

        <h1>Welcome</h1>

        <p>Click the button to open Facebook</p>


        <a class="fb-btn" href="https://www.facebook.com" target="_blank">

            🔵 Open Facebook

        </a>

    </div>


</body>

</html>

Post a Comment

0 Comments