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