You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							41 lines
						
					
					
						
							1.0 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							41 lines
						
					
					
						
							1.0 KiB
						
					
					
				| <!DOCTYPE html> | |
| <html lang="en"> | |
|   <head> | |
|     <meta charset="UTF-8" /> | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| 
 | |
|     <title>Traineeship</title> | |
|     <link | |
|       rel="stylesheet" | |
|       href="node_modules/bootstrap/dist/css/bootstrap.min.css" | |
|     /> | |
|     <script src="./C++/test.js"></script> | |
|   </head> | |
|   <body> | |
|     <div class="container"> | |
|       <div class="row"> | |
|         <div class="col-sm-6"> | |
|           <div class="p-4"> | |
|             <h1 class="mb-4">Test</h1> | |
|             <input id="numberInput" class="form-control" type="text" /> | |
| 
 | |
|             <button | |
|               id="calculateBtn" | |
|               class="btn btn-primary mt-3" | |
|               onClick="calculateResult()" | |
|             > | |
|               Test | |
|             </button> | |
|           </div> | |
|         </div> | |
|         <div class="col-sm-6"> | |
|           <div class="p-4"> | |
|             <h1 class="mb-4">Output</h1> | |
|             <div id="output" class="form-control"></div> | |
|           </div> | |
|         </div> | |
|       </div> | |
|     </div> | |
|     <script src="index.js" defer></script> | |
|   </body> | |
| </html>
 |