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