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