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