프로그래밍/HTML, CSS, JSP, 서블릿
HTML, CSS 검색 창
현호s
2020. 6. 11. 20:32
반응형
*검색 창

<!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>
반응형