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