20 lines
		
	
	
		
			684 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			684 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <link rel="stylesheet" href="style.css" />
 | |
|     <title>Github Profiles</title>
 | |
|   </head>
 | |
|   <body>
 | |
|     <form class="user-form" id="form">
 | |
|       <input type="text" id="search" placeholder="Search a Github User">
 | |
|     </form>
 | |
| 
 | |
|     <main id="main"></main>
 | |
| 
 | |
|     <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.21.0/axios.min.js" integrity="sha512-DZqqY3PiOvTP9HkjIWgjO6ouCbq+dxqWoJZ/Q+zPYNHmlnI2dQnbJ5bxAHpAMw+LXRm4D72EIRXzvcHQtE8/VQ==" crossorigin="anonymous"></script>
 | |
|     <script src="script.js"></script>
 | |
|   </body>
 | |
| </html>
 | 
