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