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