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