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