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