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