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