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