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