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