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