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