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