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