JSFiddle - React, Tailwind, and code Playground
by AltayH
HTML
<!DOCTYPE html>
<html>
<head>
<title>Google-hosted Layout Demo</title>
</head>
<body>
<div>Google-hosted Layout Demo: open the results page in the current window</div>
<div id="cse-search-form" style="width: 100%;">Loading</div>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
google.load('search', '1', {language : 'en'});
google.setOnLoadCallback(function() {
var customSearchControl = new google.search.CustomSearchControl('000888210889775888983:3gepro1fol8');
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
var options = new google.search.DrawOptions();
options.enableSearchboxOnly("http://google.com/cse?cx=000888210889775888983:3gepro1fol8");
customSearchControl.draw('cse-search-form', options);
}, true);
</script>
<link rel="stylesheet" href="http://www.google.com/cse/static/style/look/default.css" type="text/css" />
</body>
</html>