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