Gen name simple example
September 9, 2021 ยท View on GitHub
<html>
<style>
#๐ง๐ฅ๐ {
text-transform: uppercase;
}
.โ๐๐ {
color: blue;
}
.โฒ๐โ {
background: white;
}
.js-overlay {
display: none;
}
#js-button {
color: blue;
}
@media (min-width: 768px) {
.โ๐๐ {
color: gray;
}
}
</style>
<body>
<svg style="display:none">
<symbol id="๐๐จ๐น"><path d=""></path></symbol>
</svg>
<h1 id="๐ง๐ฅ๐">Title</h1>
<p class="โ๐๐">OMG</p>
<div class="js-overlay"></div>
<div id="js-button"></div>
<div class="โฒ๐โ">
card content
</div>
<svg>
<use href="#๐๐จ๐น"></use>
</svg>
<label for="๐ป๐๐">Click me</label>
<input type="text" id="๐ป๐๐">
</body>
</html>