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