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