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