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