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