Use on the webTotal Use [ 5314 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/f4bec8ce6957b45b2e5f190cc0b63bbc?family=Citadel-Solid" 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/f4bec8ce6957b45b2e5f190cc0b63bbc?family=Citadel-Solid);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Citadel-Solid";
src: url("https://db.onlinewebfonts.com/t/f4bec8ce6957b45b2e5f190cc0b63bbc.eot");
src: url("https://db.onlinewebfonts.com/t/f4bec8ce6957b45b2e5f190cc0b63bbc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/f4bec8ce6957b45b2e5f190cc0b63bbc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/f4bec8ce6957b45b2e5f190cc0b63bbc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/f4bec8ce6957b45b2e5f190cc0b63bbc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/f4bec8ce6957b45b2e5f190cc0b63bbc.svg#Citadel-Solid")format("svg");
}
2CSS rules to specify fonts
font-family: "Citadel-Solid";