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