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