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