forked from chubby/happy_lights
		
	
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
    <head>
 | 
						|
        <style>
 | 
						|
            .table {
 | 
						|
                width: 500px;
 | 
						|
                padding: 10px; 
 | 
						|
                border: 2px solid rgb(196, 195, 195);
 | 
						|
                border-radius: 4px;
 | 
						|
                background-color: rgb(223, 223, 223);
 | 
						|
            }
 | 
						|
 | 
						|
            .table td{
 | 
						|
                padding: 10px;
 | 
						|
                border: 1px solid black;
 | 
						|
                background-color: white;
 | 
						|
            }
 | 
						|
 | 
						|
            .input{
 | 
						|
                margin: 15px;
 | 
						|
            }
 | 
						|
 | 
						|
           .btn {
 | 
						|
                display: inline-block;
 | 
						|
                padding: 10px;
 | 
						|
                background-color: rgb(253, 253, 250);
 | 
						|
                border: 2px solid rgb(247, 247, 153);
 | 
						|
                border-radius: 4px;
 | 
						|
           }
 | 
						|
 | 
						|
           .btn:hover{
 | 
						|
               background-color: yellow;
 | 
						|
           }
 | 
						|
 | 
						|
           .container {
 | 
						|
                display: flex;
 | 
						|
                margin: 10px;
 | 
						|
           }     
 | 
						|
 | 
						|
        </style>
 | 
						|
        
 | 
						|
        <!-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
 | 
						|
   
 | 
						|
        <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.1/font/bootstrap-icons.css">
 | 
						|
 -->
 | 
						|
 | 
						|
    </head>
 | 
						|
    <body>
 | 
						|
        <table class="table" id="qq"></table>
 | 
						|
        <div class="container">
 | 
						|
                container
 | 
						|
                <input class = "input" type="color" id="palitra">
 | 
						|
                <button class="btn">Кнопка</button>
 | 
						|
        </div>
 | 
						|
          
 | 
						|
        <script src="main.js"></script>
 | 
						|
    </body>
 | 
						|
</html> |