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