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