Here is the code, I want to put the character ©:
h1::after{
content: ©
}
Here is the code, I want to put the character ©:
h1::after{
content: ©
}
You need to use unicode character of CSS, eg:
h1::after{
content:"<h1>
Empresa
</h1>
a9";
font-size: 14px;
position: relative;
top: -10px;
left: -5px;
}
h1::after{
content:"<h1>
Empresa
</h1>
a9";
font-size: 14px;
position: relative;
top: -10px;
left: -5px;
}