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