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