forked from ekelseya/colorNames
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpalette.html
32 lines (32 loc) · 1.35 KB
/
palette.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<title>Palette of Named Colors</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/node-snackbar@latest/dist/snackbar.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="palette.css">
</head>
<body>
<main>
<section class="introduction">
<h1>Palette of Named Colors</h1>
<p>Modern browsers support 140 named colors.</p>
<p>This is a page displaying all named colors in a neat, grid-like fashion.</p>
<p><b>Click on any color to copy its HEX code into your clipboard.</b></p>
</section>
<section class="colors">
<h2>Flexbox</h2>
<div class="flex"></div>
<h2>CSS Grid</h2>
<div class="grid"></div>
</section>
</main>
<script src="https://unpkg.com/rxjs@^7/dist/bundles/rxjs.umd.min.js"></script>
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://unpkg.com/tippy.js@6"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/node-snackbar@latest/src/js/snackbar.min.js"></script>
<script src="palette.js"></script>
</body>
</html>