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