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