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