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