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