First Assignment

It's about creating some kind of post that can also be a link to be able to get developers

2022-09-16 10:18:22 - Mary

*{

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

.bigbox{overflow: hidden;

        width: 45%;

        /* height: 300px; */

        text-align: center;

        padding: 5px 0;

        margin: 50px auto;

        border-radius: 10px;

        background-color: blue;

        color: white;

        transition: 0.3s;

}

p{font-weight: 100;

  font-size: 15px;

  margin-bottom: 20px;

}

a{border-radius: 10px;

  background-color: aqua;

  color: white;

  text-decoration: none;

  margin-bottom: 20px;

  padding:10px;

  display:block;

}

a:hover{

    background-color: black;

    color:red

}

.bigbox:hover{transform: scale(1.1);


}

HTML CODE

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

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

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

    <title>Assigment</title>

</head>

<body>

    <div class="bigbox">

        <h2 class="title">

            <br>37 Essential

            <br>JavaScript

            <br>Interview

            <br>Questions *                                                        

        </h2>

        <p>

            <br>Toptal sourced essential Questions

            <br>that the best JavaScript developers

            <br>and engineers can answer. Driven

            <br>from our community, we encourage

            <br>experts to submit questions and

            <br>offer feedback

        </p>

        <a href="#">Hire a JavaScript developer <br> Now</a>

    </div>

</body>

</html>

More Posts