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