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