반응형

*검색 창

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>검색창</title>
    <style>
        .input-box {
            text-align: right;
            padding: 20px;
        }
        button {
            background-color: #1b5ac2;
            color: white;
        }

    </style>
</head>

<body>

    <div class="input-box">
        <input type="text" placeholder="검색어 입력">
        <button>검색</button>
    </div>

</body>
</head>

 

반응형

+ Recent posts