I'm looking for a code to insert on a website that enables making a Google search while having a stored string attached in that search. Example, I would Google search "pitbull" and the Google search would return results of "pitbull awesome pics" being "awesome pics" the string always included in the Google search.
You can do with with straight HTML. Google search accepts multiple query parameters (q=). You can create a HTML form with a hidden parameter for "corgi" and a user editable parameter as well. Here is an example:
<form action=https://www.google.com/search>
<input type=hidden name=q value=corgi>
<input type=text name=q value='pretty pics'>
<input type=submit value=Search>
</form>