Skip to content

Instantly share code, notes, and snippets.

@x3r0s
Created December 3, 2021 07:20
Show Gist options
  • Save x3r0s/af07abedc367b821e101f234e1b6fdaa to your computer and use it in GitHub Desktop.
Save x3r0s/af07abedc367b821e101f234e1b6fdaa to your computer and use it in GitHub Desktop.
Search bar with search icon
<!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>
<h1>Kakao Image Search</h1>
<div id="search-container">
<input id="search" type="text" id="search" />
<button id="search-confirm">Search</button>
</div>
<ul id="list">
<!-- 자바스크립트로 동적으로 작동함 -->
</ul>
</body>
</html>
body {
background-color: #202124;
color: #6A6D72;
}
#search-container {
width: 100%;
display: flex;
}
#search-container #search {
padding: 10px 200px;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
border: 0;
outline: none;
border: none;
background-color: #303134;
color: #fff;
}
#search-container #search-confirm {
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
outline: none;
border: none;
background-color: #303134;
color: #fff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment