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