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