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