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