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