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