22 lines
		
	
	
		
			483 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			483 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|   <meta charset="utf-8">
 | |
|   <meta name="viewport" content="width=device-width,initial-scale=1">
 | |
|   <title>Search example</title>
 | |
|   <style>
 | |
|     body {
 | |
|       font: 14px "Helvetica Neue", Helvetica;
 | |
|       padding: 50px;
 | |
|     }
 | |
|   </style>
 | |
| </head>
 | |
| <body>
 | |
|   <h2>Search</h2>
 | |
|   <p>Try searching for "ferret" or "cat".</p>
 | |
|   <input type="search" name="search" value="" />
 | |
|   <pre></pre>
 | |
|   <script src="/client.js" charset="utf-8"></script>
 | |
| </body>
 | |
| </html>
 |