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