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