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