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