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