Web

Web


<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

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

    <title>Document</title>

    <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>

    <h1>Fast</h1>

    <h1 class="foot">Food</h1>

    <div class="content">

        <div class="box1">

            <div class="inbox">

                <h4>BURGER</h4>

            </div>

            <div class="inbox">

                <h4>HOT DOG</h4>

            </div>

        </div>

        <div class="box1">

            <div class="inbox">

                <h4>SNACKS</h4>

            </div>

            <div class="inbox">

                <h4>DRINKS</h4>

            </div>

        </div>

    </div>

</body>

</html>


CSS

body {

    background-color: #fcca01;

}

h1{

    text-align: center  ;

    color: #de1019;

    font-family: 'Kalam', cursive;

    font-size: 80px;

    line-height: 80px;

}

*{

    margin:0;

    padding: 0;

    box-sizing: border-box;

}

.foot{

    margin-left: 80px;

}

.box1{

    width: 30%;

    min-height: 500px;

    background-color: white;

    border-radius: 5%;

    display: flex;

    justify-content: space-around;

    flex-direction: column;

    align-items: center;


}

.content{

    width: 70%;

    height: 80vh;

    border: 1px solid;

    margin: 30px auto;

    display: flex;

    justify-content: space-around;

    flex-wrap: wrap;

}

.inbox{

    width: 80%;

    height: 40%;

    border: 1px solid;;

    text-align: center;

    font-weight: bold;

    font-family: 'Kalam', cursive;

    color: #de1019;

    font-size: 60px;

}


Report Page