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