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