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