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