17 lines
550 B
HTML
17 lines
550 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Search</title>
|
|
</head>
|
|
<body>
|
|
<div id="buttons">
|
|
<label> <input id="query" value='cats' type="text"/><button id="search-button" onclick="search()">Search</button></label>
|
|
</div>
|
|
<div id="search-container">
|
|
</div>
|
|
<script src="https://www.gstatic.com/external_hosted/jquery2.min.js"></script>
|
|
<script src="auth.js"></script>
|
|
<script src="search.js"></script>
|
|
<script src="https://apis.google.com/js/client.js?onload=googleApiClientReady"></script>
|
|
</body>
|
|
</html> |