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