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