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