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