forked from chubby/happy_lights
41 lines
953 B
HTML
41 lines
953 B
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;
|
|
}
|
|
|
|
|
|
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table class='table' id='qq' ></table>
|
|
|
|
<input class = "input" type='color' id='palitra' >
|
|
<input class = "input" type='color' id='palitra' >
|
|
<input class = "input" type='color' id='palitra' >
|
|
|
|
|
|
<script src="main.js"></script>
|
|
|
|
</body>
|
|
</html> |