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