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