web

web


<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Document</title>

    <link rel="stylesheet" href="style.css">


    <link rel="preconnect" href="https://fonts.googleapis.com">

    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

    <link href="https://fonts.googleapis.com/css2?family=Kalam:wght@700&display=swap" rel="stylesheet">


</head>

<body>

    <div class="fastfood">

        <h1>Fast</h1>

        <h1 style="margin-left: 100px;">Food</h1>

    </div>

    <div class="content">

        <div class="block">

            <div class="inbox">

                <h4>Burger</h4>

            </div>

            <div class="inbox">

                <h4>Hot Dog</h4>

            </div>

        </div>



        <div class="block">

            <div class="inbox">


            </div>

            <div class="inbox">


            </div>

        </div>

    </div>

   

   

</body>

</html>










*{

    margin: 0;

    padding: 0;

}


body{

    background-color: #fcca01;

}


h1{

    font-size: 80px;

    line-height: 80px;

    text-align: center;

    color: #de1019;

    font-family: 'Kalam', bold;

}



.content{

    width: 70%;

    height: 80vh;

    border: 2px solid;

    margin: 40px auto;

    display: flex;

    justify-content: space-around;

    flex-wrap: wrap;

}


.block{

    min-height: 500px;

    width: 30%;

    background-color: antiquewhite;

    border-radius: 40px;

    display: flex;

    justify-content: space-around;

    flex-direction: column;

    align-items:center

}


.inbox{

    width: 80%;

    height: 40%;

    border: 1px solid;

}


h1{

    font-size: 80px;

    line-height: 80px;

    text-align: center;

    color: #de1019;

    font-family: 'Kalam', bold;

}




Report Page