cct-css
Version:
Custom CSS file with extended HTML5 tags support
78 lines (73 loc) • 2.04 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>cct.css – Custom Color Tags Preview</title>
<link rel="stylesheet" href="cct.css" />
<style>
/* General Page Styles */
body {
font-family: system-ui, sans-serif;
background: #111;
color: #eee;
margin: 0;
padding: 2rem;
}
h1 {
font-size: 2rem;
margin-bottom: 1.5rem;
}
section {
display: grid;
gap: 1rem;
}
/* Base Tag Styling (Optional fallback if tag is missing CSS in cct.css) */
red,
green,
blue,
pink,
orange,
purple,
yellow,
cyan,
brown,
gray,
black,
white,
gold,
silver,
teal,
lime {
display: block;
padding: 1rem;
font-weight: bold;
border-radius: 0.5rem;
text-transform: uppercase;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
</style>
</head>
<body>
<h1>cct.css – Custom Tag Showcase</h1>
<section>
<red><red> Hello Red</red>
<green><green> Hello Green</green>
<blue><blue> Hello Blue</blue>
<pink><pink> Hello Pink</pink>
<orange><orange> Hello Orange</orange>
<purple><purple> Hello Purple</purple>
<yellow><yellow> Hello Yellow</yellow>
<cyan><cyan> Hello Cyan</cyan>
<brown><brown> Hello Brown</brown>
<gray><gray> Hello Gray</gray>
<black><black> Hello Black</black>
<white><white> Hello White</white>
<gold><gold> Hello Gold</gold>
<silver><silver> Hello Silver</silver>
<teal><teal> Hello Teal</teal>
<lime><lime> Hello Lime</lime>
<white>ect.</white>
</section>
</body>
</html>