Simple Logo Designing Using HTML and CSS.|



Copy HTML File:

<!DOCTYPE html>
<html lang="en">
<head>
    <link rel="stylesheet" href="style.css">
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Logo</title>
</head>
<body>
    
    <div class="main">
        <div class="inter-main">
            <div class="t">
                <h1>T</h1>
            </div>
            <div class="v">
                <h1>V</h1>
            </div>
        </div>
    </div>
    <div class="border"></div>
</body>
</html>


Copy CSS File:

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main{
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: black;
}
.inter-main{
    position: fixed;
    height: 20vh;
    margin-top: 300px;
    margin-left: 650px;
    width: 10vw;
    background-color: aqua;
}
.border{
    border: 15px solid red;
    height: 170px;
    width: 180px;
    transform: rotate(45deg);
    margin-top: 290px;
    margin-left: 637px;
    position: fixed;
}
.t{
    margin-left: 55px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 35px;
}
.v{
    margin-left: 55px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 35px;
    margin-top: -20px;
}

Comments