ids in csss code example
Example: css id
<style>
#your_id{
color: blue;
font-size: 24px;
}
</style>
<h1 id="your_id">Example text</h1>
<style>
#your_id{
color: blue;
font-size: 24px;
}
</style>
<h1 id="your_id">Example text</h1>