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