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