31 lines
		
	
	
		
			791 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			791 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <meta http-equiv="X-UA-Compatible" content="ie=edge" />
 | |
|     <title>Oppgave X</title>
 | |
|     <link rel="stylesheet" href="../../../../resources/css/main.css" />
 | |
|     <script async src="./script.js"></script>
 | |
|   </head>
 | |
|   <body>
 | |
|     <h1>Oppgave 3</h1>
 | |
| 
 | |
|     <div class="center">
 | |
|       <div class="inline">
 | |
|         <button id="getDataButton">Hent data fra listen</button>
 | |
|         <span id="dataSpan"></span>
 | |
|       </div>
 | |
| 
 | |
|       <table id="dataTable" class="inlineTable">
 | |
|         <tr>
 | |
|           <th>Nummer</th>
 | |
|           <th>Data</th>
 | |
|         </tr>
 | |
|       </table>
 | |
| 
 | |
|       <table id="history" class="inlinetable"></table>
 | |
|     </div>
 | |
|   </body>
 | |
| </html>
 |