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