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