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