Use on the webTotal Use [ 5564 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/3fa4d1f4c04c402e9990ae6f9fb6fbec?family=Ciutadella+Rounded+TRIAL+SmBd" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/3fa4d1f4c04c402e9990ae6f9fb6fbec?family=Ciutadella+Rounded+TRIAL+SmBd);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Ciutadella Rounded TRIAL SmBd";
src: url("https://db.onlinewebfonts.com/t/3fa4d1f4c04c402e9990ae6f9fb6fbec.eot");
src: url("https://db.onlinewebfonts.com/t/3fa4d1f4c04c402e9990ae6f9fb6fbec.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/3fa4d1f4c04c402e9990ae6f9fb6fbec.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/3fa4d1f4c04c402e9990ae6f9fb6fbec.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/3fa4d1f4c04c402e9990ae6f9fb6fbec.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/3fa4d1f4c04c402e9990ae6f9fb6fbec.svg#Ciutadella Rounded TRIAL SmBd")format("svg");
}
2CSS rules to specify fonts
font-family: "Ciutadella Rounded TRIAL SmBd";