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