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