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