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