<!DOCTYPE html>
<html>
<head>
<title>Search Bar HTML CSS</title>
<style type=”text/css”>
#search{
width: 200px;
padding: 7px;
border: 5px solid #333;
background-color: #222;
font-size: 36px;
}
#submit{
padding: 7px;
background: green;
border: 5px solid #333;
color: white;
margin-left: -5px;
cursor: pointer;
font-size: 36px;
}
#submit:hover{
background: #333;
transition: all 1.20s;
}
</style>
<form action=”https://google.com”>
<input type=”text” placeholder=”Search…” maxlenght=”20″ id=”search”>
<input type=”submit” value=”Go!” id=”submit”>
</form>
</head>
<body>
</body>
</html>?