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