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