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