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