20 lines
		
	
	
		
			505 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			505 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="ja">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <title>ai.card</title>
 | |
|     <style>
 | |
|       body {
 | |
|         margin: 0;
 | |
|         font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 | |
|         background-color: #0a0a0a;
 | |
|         color: #ffffff;
 | |
|       }
 | |
|     </style>
 | |
|   </head>
 | |
|   <body>
 | |
|     <div id="root"></div>
 | |
|     <script type="module" src="/src/main.tsx"></script>
 | |
|   </body>
 | |
| </html> |