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