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