Nightangale in html and css

 index.html

<!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">
    <title>Document</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="main">
        <div class="main2">
            <p class="h1">Sheryians Coding School</p>
            <p>Lorem ipsum dolor sit.</p>
            <button>Explore</button>
        </div>
    </div>
</body>
</html>

Style.css

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
}
.main{
    width: 100%;
    height: 100%;
    background-image: url("https://images.unsplash.com/photo-1679673177212-8a011a4f86f7?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1172&q=80");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: absolute;
   
}
.main2{
    width: 60%;
    align-content: center;
    text-align: center;
    margin: auto;
    margin-top: 20%;
}
.h1{
    color: wheat;
    font-weight: normal;
    font-size: 40px;
    word-spacing: 10px;
    letter-spacing: 10px;
}
p{
    color: wheat;
    font-size: 20px;
    margin-top: 10px;
    word-spacing: 10px;
    letter-spacing: 10px;
}
button{
    color: wheat;
    font-size: 20px;
    margin-top: 10px;
    background-color: transparent;
    border: 2px solid beige;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
}
button:hover{
    color: black;
    font-size: 20px;
    margin-top: 10px;
    background-color: transparent;
    border: 2px solid black;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
}

/* h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
} */

Output : - 



You have to wait 15 seconds.

Generating Download Link...

Post a Comment

Post a Comment (0)

Previous Post Next Post