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