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