+ 2
body {
}
#a{
color:white;
width:343px;
height:25px;
font-size:20px;
margin-top:150px;
margin-right:30px;
background-color:lightgray;
}
#b{
width:186px;
height:50px;
font-size:30px;
margin-left:66px;
margin-right:30px;
color:red;
background-color:lightgray;
}
function search(){
var a = document.getElementById("a").value;
window.location.href = "https://www.google.com/search?q="+a+"&oq="+a+"&aqs=chrome..69i57j69i60l4j35i39.7594j0j7&client=ms-android-samsung&sourceid=chrome-mobile&ie=UTF-8";
}
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body bgcolor="gray">
<input type="text" id="a" placeholder=" type your search to search it to google"/>
<input type="button" onclick="search()" id="b"value="search"/>
</body>
</html>



