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