22 lines
		
	
	
		
			501 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			501 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | ||
| <html lang="de">
 | ||
| <head>
 | ||
|   <meta charset="UTF-8">
 | ||
|   <title>🏆 VictoryTimer</title>
 | ||
|   <link rel="stylesheet" href="style.css">
 | ||
|   <script type="module" src="app.js"></script>
 | ||
| </head>
 | ||
| <body>
 | ||
|   <h1>🏆 VictoryTimer</h1>
 | ||
| 
 | ||
|   <h2>⏱ Zeit seit letzter Zigarette:</h2>
 | ||
|   <div id="timer">–</div>
 | ||
|   <button id="resetBtn">Ich habe geraucht</button>
 | ||
|   <p id="message"></p>
 | ||
| 
 | ||
|   <h2>📈 Deine letzten Versuche</h2>
 | ||
|   <canvas id="historyChart" width="600" height="300"></canvas>
 | ||
| </body>
 | ||
| </html>
 | ||
| 
 | 
