31 lines
		
	
	
		
			710 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			710 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<head>
 | 
						|
    <script src="./htmx.js"></script>
 | 
						|
    <style type="text/css">
 | 
						|
        body {
 | 
						|
            #grid {
 | 
						|
                .cell {
 | 
						|
                    border: 1px dotted black;
 | 
						|
                    padding: 33%;
 | 
						|
                }
 | 
						|
                display: grid;
 | 
						|
                border: 1px solid black;
 | 
						|
                grid-template-rows: 1fr 1fr 1fr;
 | 
						|
                grid-template-columns: 1fr 1fr 1fr;
 | 
						|
            }
 | 
						|
        }
 | 
						|
    </style>
 | 
						|
</head>
 | 
						|
<html>
 | 
						|
    <body>
 | 
						|
        <h1>TicTacToe</h1>
 | 
						|
        <div
 | 
						|
            id="game"
 | 
						|
            hx-get="/ttt/initial_game"
 | 
						|
            hx-swap="outerHTML"
 | 
						|
            hx-trigger="load"
 | 
						|
            hx-target="this"
 | 
						|
        ></div>
 | 
						|
    </body>
 | 
						|
</html>
 |