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