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