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