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