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