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