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