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