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