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