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