27 lines
		
	
	
		
			No EOL
		
	
	
		
			562 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			No EOL
		
	
	
		
			562 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| 
 | |
| <head>
 | |
| 
 | |
|   <!--  Meta  -->
 | |
|   <meta charset="UTF-8" />
 | |
|   <title>My New Pen!</title>
 | |
| 
 | |
|   <!--  Styles  -->
 | |
|   <link rel="stylesheet" href="lib/lib.css">
 | |
|   <link rel="stylesheet" href="style.css">
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
|   <div id="app-container">
 | |
|     <div id="score-container">Score: 0</div>
 | |
|     <h2 id="app-title">Quiz Application (Card edition)</h2>
 | |
|     <div id="questions-container"></div>
 | |
|   </div>
 | |
| 
 | |
|   <!-- Scripts -->
 | |
|   <script src="lib/lib.js"></script>
 | |
|   <script src="NewProject.js"></script>
 | |
| </body>
 | |
| 
 | |
| </html> |