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