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