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