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