simple-color-picker
Version:
Simple Color picker for the web
28 lines • 559 B
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<title>SimpleColorPicker</title>
<style>
body {
font-family: 'Courier New', 'Courier', 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
margin: 0;
padding: 0;
text-align: center;
}
h1 {
font-weight: normal;
margin-top: 5%;
}
a {
color: white;
text-decoration: none;
}
.Scp {
margin: 5% auto 0;
}
</style>
<body>
<h1><a href="https://github.com/superguigui/simple-color-picker">SimpleColorPicker</a></h1>
<script src="./index.js"></script>
</body>
</html>