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