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