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