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