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