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