31 lines
		
	
	
		
			561 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			561 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<html>
 | 
						|
  <head>
 | 
						|
    <title>tarot</title>
 | 
						|
<style>
 | 
						|
  body {
 | 
						|
    background-color: black;
 | 
						|
    color: white;
 | 
						|
  }
 | 
						|
</style>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <div id="deck"></div>
 | 
						|
    <div id="info" style="height: 275px; width: 500px; margin-left: 200px; overflow:auto"></div>
 | 
						|
    <button id="reset">reset</button>
 | 
						|
    <br>
 | 
						|
    <div id="table"></div>
 | 
						|
 | 
						|
    <div class="blueprint card">
 | 
						|
      <pre></pre>
 | 
						|
      <span></span>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <script type="module" src="main.js"></script>
 | 
						|
    <style>
 | 
						|
      .blueprint {
 | 
						|
        display: none;
 | 
						|
      }
 | 
						|
    </style>
 | 
						|
  </body>
 | 
						|
</html>
 |