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