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