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